@ucdjs/release-scripts 0.1.0-beta.20 → 0.1.0-beta.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/index.mjs +1 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -202,8 +202,7 @@ async function createBranch(branch, base, workspaceRoot) {
|
|
|
202
202
|
try {
|
|
203
203
|
logger.info(`Creating branch: ${farver.green(branch)} from ${farver.cyan(base)}`);
|
|
204
204
|
await runIfNotDry("git", [
|
|
205
|
-
"
|
|
206
|
-
"-b",
|
|
205
|
+
"branch",
|
|
207
206
|
branch,
|
|
208
207
|
base
|
|
209
208
|
], { nodeOptions: {
|