Skip to content

Commit 3564b3e

Browse files
committed
fix: unescaped ~ caused problems
If the tilde is used as `~.*` there are no problems. But with for example `bsm -h ~`, there will still be an error because we can't be sure we won't change the meaning of the statement
1 parent 6224597 commit 3564b3e

7 files changed

+28
-6
lines changed

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
dist/
22
.idea/
3+
CHANGELOG.md

README.md

+14
Original file line numberDiff line numberDiff line change
@@ -492,6 +492,20 @@ bsm test
492492

493493
The above command will execute `echo Hello World!`.
494494

495+
## Trouble shooting
496+
497+
### `Script '/home/runner' not found`
498+
499+
When using a unix based OS, you might get the following error:
500+
501+
```bash
502+
Script '{home}' not found
503+
```
504+
505+
This is caused by the `~` prefix being expanded by the shell.
506+
You can fix this by using `bsm \~` instead of `bsm ~`.
507+
In version `1.0.1` and above we try to detect this and fix it automatically.
508+
495509
## Future plans
496510

497511
- [ ] Have support for workspaces / lerna

package-lock.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"@types/sinon": "^10.0.16",
3838
"@typescript-eslint/eslint-plugin": "^6.6.0",
3939
"@typescript-eslint/parser": "^6.6.0",
40-
"@under_koen/bsm": "^0.0.6",
40+
"@under_koen/bsm": "^1.0.0",
4141
"c8": "^8.0.1",
4242
"ci-info": "^3.8.0",
4343
"defu": "^6.1.2",

package.scripts.js

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ module.exports = {
1818
packageJson: "prettier-package-json --write",
1919
eslint: "bsm lint.eslint -- --fix",
2020
prettier: "prettier --write .",
21+
updateBsm: "npm i -D @under_koen/bsm@latest",
2122
},
2223
lint: {
2324
$description: "Run all linters",

src/executor.ts

+3
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,9 @@ class Executor {
9191

9292
if (context === "") return;
9393

94+
// Escape ~ for unix shells
95+
context = context.replace(/bsm ~/g, "bsm \\~");
96+
9497
return await new Promise((resolve, reject) => {
9598
const s = child_process.spawn(context, [], {
9699
stdio: "inherit",

src/index.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ async function main() {
2323

2424
addToPath(process.env, await getNpmBin());
2525

26-
for (const script of argv._) {
26+
for (let script of argv._) {
27+
// On Windows, you can't escape the tilde, so we have to do it for the user
28+
script = script.replace(/^\\~/g, "~");
29+
2730
if (script.startsWith("~") && process.env.BSM_PATH) {
2831
const prefix = process.env.BSM_PATH.split(".");
2932
const sub = getScript(config.scripts, prefix);

0 commit comments

Comments
 (0)