Skip to content

Commit cf3a2f6

Browse files
committed
packages/create/package.json: do not call bash excessively
the script's shebang calls the shell already. Right now a bash is called within a shell only to execute the shebang, which in turn executes another shell.
1 parent 5d280db commit cf3a2f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/create/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"format": "pnpm lint --write",
1818
"lint": "prettier --check . --config ../../prettier.config.js --ignore-path ../../.gitignore --ignore-path .gitignore --ignore-path ../../.prettierignore",
1919
"test": "vitest run",
20-
"update-template-repo": "pnpm build:dist && echo \"Updating template repo\" && bash ./scripts/update-template-repo.sh"
20+
"update-template-repo": "pnpm build:dist && echo \"Updating template repo\" && ./scripts/update-template-repo.sh"
2121
},
2222
"files": [
2323
"dist"

0 commit comments

Comments
 (0)