Browse Source

remove unnessesary installation of make

refactor/nvim-lua
garritfra 6 years ago
parent
commit
f42d33e661
  1. 5
      modules/make.sh

5
modules/make.sh

@ -1,7 +1,8 @@
#!/bin/bash
if make -v; then exit 0
fi
apt-get -v
if [ $? -eq 0 ]; then
if [! apt-get -v]; then
apt-get install make
else
brew install make

Loading…
Cancel
Save