Skip to content
This repository was archived by the owner on Oct 11, 2025. It is now read-only.

Commit 8c8af3e

Browse files
committed
quick save: Fri May 9 18:23:51 MSK 2025
1 parent 3428dae commit 8c8af3e

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,9 @@ your arguments after `node -`:
218218
```bash
219219
set -euo pipefail
220220
221+
# Either set specific tag
221222
TAG=0.1.27 && curl -sL https://github.com/nikelborm/$PACKAGE/releases/download/$TAG/$PACKAGE.js | node - --repoOwner apache --repoName superset
222-
# or
223+
# or download the latest
223224
curl -sL https://github.com/nikelborm/$PACKAGE/releases/latest/download/$PACKAGE.js | node - --repoOwner apache --repoName superset
224225
```
225226
@@ -239,8 +240,9 @@ it can't be piped and needs to be saved to a temporary file:
239240
set -euo pipefail
240241
tmp_js=$(mktemp --suffix .js)
241242
243+
# Either set specific tag
242244
TAG=0.1.27 && curl -sLo $tmp_js https://github.com/nikelborm/$PACKAGE/releases/download/$TAG/$PACKAGE.js
243-
# or
245+
# or download the latest
244246
curl -sLo $tmp_js https://github.com/nikelborm/$PACKAGE/releases/latest/download/$PACKAGE.js
245247
246248
node $tmp_js --wizard
@@ -284,6 +286,6 @@ explicitly.
284286
- `DESTINATION_PATH`: If entity at `PATH_TO_ENTITY_IN_REPO` is a file, then
285287
destination path is a path to downloaded file. If it's a directory, then all
286288
files and directories from target directory of remote repository at
287-
`PATH_TO_ENTITY_IN_REPO` will be put into a directory with path from
288-
`DESTINATION_PATH`. If the directory doesn't exist, it will be automatically
289-
created.
289+
`PATH_TO_ENTITY_IN_REPO` will be put into a directory having
290+
`DESTINATION_PATH` path. If the directory doesn't exist, it will be
291+
automatically created.

0 commit comments

Comments
 (0)