2
2
mirror of https://git.coolaj86.com/coolaj86/telebit.js.git synced 2025-03-02 22:50:41 +00:00
This commit is contained in:
AJ ONeal 2018-06-28 15:26:07 -06:00
parent 92c1180d0f
commit 999e8dfb5c

View File

@ -200,12 +200,12 @@ pushd $TELEBIT_TMP >/dev/null
else
echo -n "."
fi
$tmp_npm install & #>/dev/null 2>/dev/null &
$tmp_npm install >/dev/null 2>/dev/null &
tmp_npm_pid=$!
while [ -n "$tmp_npm_pid" ]; do
sleep 2
kill -s 0 $tmp_npm_pid || tmp_npm_pid=""
echo -n "."
kill -s 0 $tmp_npm_pid >/dev/null 2>/dev/null || tmp_npm_pid=""
done
popd >/dev/null