add test for yarn installation
This commit is contained in:
parent
d83b79b988
commit
7092b12ea3
|
@ -2,6 +2,11 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
if ! command -v yarn ; then
|
||||||
|
echo 'nvim.sh: Error - dependency `yarn` not installed'
|
||||||
|
exit 5
|
||||||
|
fi
|
||||||
|
|
||||||
if command -v apt-get ; then
|
if command -v apt-get ; then
|
||||||
apt-get -y install ninja-build gettext libtool libtool-bin autoconf automake cmake g++ pkg-config unzip
|
apt-get -y install ninja-build gettext libtool libtool-bin autoconf automake cmake g++ pkg-config unzip
|
||||||
cd /tmp
|
cd /tmp
|
||||||
|
|
Reference in New Issue