repowise 0.1.76 → 0.1.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/repowise.js +1 -1
- package/package.json +1 -1
package/dist/bin/repowise.js
CHANGED
|
@@ -2420,7 +2420,7 @@ async function create() {
|
|
|
2420
2420
|
syncId = triggerResult.syncId;
|
|
2421
2421
|
} catch (triggerErr) {
|
|
2422
2422
|
const msg = triggerErr instanceof Error ? triggerErr.message : "";
|
|
2423
|
-
if (!msg.toLowerCase().includes("already running")) {
|
|
2423
|
+
if (!msg.toLowerCase().includes("already running") && !msg.toLowerCase().includes("already in progress")) {
|
|
2424
2424
|
throw triggerErr;
|
|
2425
2425
|
}
|
|
2426
2426
|
spinner.text = "Resuming existing pipeline...";
|