@rubytech/taskmaster 1.0.20 → 1.0.21
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/build-info.json
CHANGED
|
@@ -255,7 +255,7 @@ export async function runGatewayUpdate(opts = {}) {
|
|
|
255
255
|
const branch = channel === "dev" ? await readBranchName(runCommand, gitRoot, timeoutMs) : null;
|
|
256
256
|
const needsCheckoutMain = channel === "dev" && branch !== DEV_BRANCH;
|
|
257
257
|
gitTotalSteps = channel === "dev" ? (needsCheckoutMain ? 11 : 10) : 9;
|
|
258
|
-
const statusCheck = await runStep(step("clean check", ["git", "-C", gitRoot, "status", "--porcelain", "--", ":!dist/control-ui/"], gitRoot));
|
|
258
|
+
const statusCheck = await runStep(step("clean check", ["git", "-C", gitRoot, "status", "--porcelain", "-uno", "--", ":!dist/control-ui/"], gitRoot));
|
|
259
259
|
steps.push(statusCheck);
|
|
260
260
|
const hasUncommittedChanges = statusCheck.stdoutTail && statusCheck.stdoutTail.trim().length > 0;
|
|
261
261
|
if (hasUncommittedChanges) {
|