From cb8c5b80e7c531d932991a922dc5122dffcc7451 Mon Sep 17 00:00:00 2001 From: rakhov Date: Wed, 9 Jul 2025 21:48:17 +0200 Subject: [PATCH] Fix issue on remote-run --- README.md | 5 ++--- scripts/remote.sh | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c609cf3..8a76688 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,6 @@ A simple project scaffolding tool that generates project structures from hsfiles - Support for local files and remote URLs - Variable substitution with `{{variable}}` syntax - Interactive prompts for missing variables -- Verbose output option - Easy installation and usage ## Installation @@ -37,7 +36,7 @@ boil my-project ./templates/basic boil my-project https://raw.githubusercontent.com/datalek/boil/main/examples/minimal-js # Using remote runner -curl -fsSL https://raw.githubusercontent.com/datalek/boil/main/remote.sh | bash -s -- my-project https://raw.githubusercontent.com/datalek/boil/main/examples/minimal-js +curl -fsSL https://raw.githubusercontent.com/datalek/boil/main/scripts/remote.sh | bash -s -- my-project https://raw.githubusercontent.com/datalek/boil/main/examples/minimal-js ``` ### Remote Runner @@ -45,7 +44,7 @@ curl -fsSL https://raw.githubusercontent.com/datalek/boil/main/remote.sh | bash For convenience, you can also use the remote runner script: ``` bash -curl -fsSL https://raw.githubusercontent.com/datalek/boil/main/remote.sh | bash -s -- +curl -fsSL https://raw.githubusercontent.com/datalek/boil/main/scripts/remote.sh | bash -s -- ``` ## Template Format diff --git a/scripts/remote.sh b/scripts/remote.sh index 392fcdc..a7b5635 100755 --- a/scripts/remote.sh +++ b/scripts/remote.sh @@ -10,4 +10,4 @@ curl -sL https://github.com/datalek/boil/releases/latest/download/boil-node-22.t # Extracting tar -xzf archive.tgz -npx node boil.cjs "$@" +npx node dist/boil.cjs "$@"