diff --git a/.changeset/create-objectstack-bin-exec-bit.md b/.changeset/create-objectstack-bin-exec-bit.md new file mode 100644 index 0000000000..e4da0cbc72 --- /dev/null +++ b/.changeset/create-objectstack-bin-exec-bit.md @@ -0,0 +1,13 @@ +--- +"create-objectstack": patch +--- + +Fix the declared bin (`bin/create-objectstack.js`) being tracked non-executable +in git. It carries a `#!/usr/bin/env node` shebang and is pnpm's link target +for the `create-objectstack` command, but was committed `100644` instead of +`100755` — matching the sibling declared bin `packages/cli/bin/run.js`, which +was already tracked executable. + +Patch bump: this is a packaging-mode correction with no content, API or +behavior change (the blob hash is identical) — it only fixes how the file is +tracked in git and therefore how it is packed for npm. diff --git a/packages/create-objectstack/bin/create-objectstack.js b/packages/create-objectstack/bin/create-objectstack.js old mode 100644 new mode 100755