mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
15 lines
304 B
Bash
Executable File
15 lines
304 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
VERSION=$1
|
|
|
|
tmp_registry_log=`mktemp`
|
|
|
|
npm i -g verdaccio@$VERSION
|
|
# start in the background the registry
|
|
nohup verdaccio &>$tmp_registry_log &
|
|
# wait until has started (using stdout)
|
|
grep -q 'http address' <(tail -f $tmp_registry_log)
|
|
npm set registry http://localhost:4873
|