siteplane 0.1.53 → 0.1.54
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/siteplane.js +1 -1
- package/package.json +1 -1
package/dist/bin/siteplane.js
CHANGED
|
@@ -5941,7 +5941,7 @@ async function setupDeployCommand(input, deps = defaults) {
|
|
|
5941
5941
|
} catch {
|
|
5942
5942
|
fail2("siteplane_package_pin_conflict", "Install the exact Siteplane package versions from the current task and commit their canonical lockfile.");
|
|
5943
5943
|
}
|
|
5944
|
-
let operationDeadline = record && !["verified", "failed"].includes(record.phase) ? Date.parse(record.deadline) : deps.now() + 9e5;
|
|
5944
|
+
let operationDeadline = record && !["verified", "deployed", "failed"].includes(record.phase) ? Date.parse(record.deadline) : deps.now() + 9e5;
|
|
5945
5945
|
const remaining = () => {
|
|
5946
5946
|
const milliseconds = operationDeadline - deps.now();
|
|
5947
5947
|
if (milliseconds <= 0)
|