mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Add warning when NVM is not present
This commit is contained in:
parent
2ca8dc903b
commit
c63753f9f0
1 changed files with 9 additions and 0 deletions
|
@ -1,5 +1,14 @@
|
||||||
#! env bash
|
#! env bash
|
||||||
|
|
||||||
|
[ -z "`type -t nvm`" ] && cat <<EOF
|
||||||
|
|
||||||
|
==========================================================
|
||||||
|
== NVM not installed, you should consider installing it ==
|
||||||
|
==========================================================
|
||||||
|
|
||||||
|
EOF
|
||||||
|
|
||||||
|
|
||||||
grep 'name:' config/services.js | \
|
grep 'name:' config/services.js | \
|
||||||
sed 's/.*name: "\(.*\)",/\1/' | \
|
sed 's/.*name: "\(.*\)",/\1/' | \
|
||||||
while read service
|
while read service
|
||||||
|
|
Loading…
Reference in a new issue