From d78ecaf00f0550db04950b93473264a3c1391602 Mon Sep 17 00:00:00 2001 From: Diego Giagio Date: Tue, 16 Oct 2018 11:30:27 +0200 Subject: [PATCH] Update README.md --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6878c1b..271c34b 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ dgiagio@X1:~/Devel/myapp$ rm -r node-v8.12.0-linux-x64/include node-v8.12.0-linu dgiagio@X1:~/Devel/myapp$ rm node-v8.12.0-linux-x64/bin/npm node-v8.12.0-linux-x64/bin/npx ``` -**Create launcher script*** - `launch` +**Create launcher script** - `launch` ```sh #!/bin/sh @@ -50,6 +50,11 @@ APP_MAIN_JS_PATH=$DIR/$APP_MAIN_JS exec $NODE_EXE $APP_MAIN_JS_PATH $@ ``` +**Make the launcher script executable** +```sh +dgiagio@X1:~/Devel/myapp$ chmod +x launch +``` + **Download `warp-packer`** If you save `warp-packer` in a directory in your PATH, you only need to download it once. @@ -130,6 +135,11 @@ APP_MAIN_JS_PATH=$DIR/$APP_MAIN_JS exec "$NODE_EXE" "$APP_MAIN_JS_PATH" $@ ``` +**Make the launcher script executable** +```sh +Diegos-iMac:myapp dgiagio$ chmod +x launch +``` + **Download `warp-packer`** If you save `warp-packer` in a directory in your PATH, you only need to download it once.