mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-14 20:40:17 -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
|
||||
|
||||
[ -z "`type -t nvm`" ] && cat <<EOF
|
||||
|
||||
==========================================================
|
||||
== NVM not installed, you should consider installing it ==
|
||||
==========================================================
|
||||
|
||||
EOF
|
||||
|
||||
|
||||
grep 'name:' config/services.js | \
|
||||
sed 's/.*name: "\(.*\)",/\1/' | \
|
||||
while read service
|
||||
|
|
Loading…
Reference in a new issue