This repository was archived by the owner on Oct 11, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -218,8 +218,9 @@ your arguments after `node -`:
218218```bash
219219set -euo pipefail
220220
221+ # Either set specific tag
221222TAG=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
223224curl -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:
239240set -euo pipefail
240241tmp_js=$( mktemp --suffix .js)
241242
243+ # Either set specific tag
242244TAG=0.1.27 && curl -sLo $tmp_js https://github.com/nikelborm/$PACKAGE /releases/download/$TAG /$PACKAGE .js
243- # or
245+ # or download the latest
244246curl -sLo $tmp_js https://github.com/nikelborm/$PACKAGE /releases/latest/download/$PACKAGE .js
245247
246248node $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.
You can’t perform that action at this time.
0 commit comments