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 -`:
218
218
```bash
219
219
set -euo pipefail
220
220
221
+ # Either set specific tag
221
222
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
223
224
curl -sL https://github.com/nikelborm/$PACKAGE/releases/latest/download/$PACKAGE.js | node - --repoOwner apache --repoName superset
224
225
```
225
226
@@ -239,8 +240,9 @@ it can't be piped and needs to be saved to a temporary file:
239
240
set -euo pipefail
240
241
tmp_js=$( mktemp --suffix .js)
241
242
243
+ # Either set specific tag
242
244
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
244
246
curl -sLo $tmp_js https://github.com/nikelborm/$PACKAGE /releases/latest/download/$PACKAGE .js
245
247
246
248
node $tmp_js --wizard
@@ -284,6 +286,6 @@ explicitly.
284
286
- `DESTINATION_PATH`: If entity at `PATH_TO_ENTITY_IN_REPO` is a file, then
285
287
destination path is a path to downloaded file. If it' s a directory, then all
286
288
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