diff options
author | Damian Rouson <damian@sourceryinstitute.org> | 2020-10-13 14:49:35 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-13 14:49:35 -0700 |
commit | de96c4a53b14f9feb51447923598d87d5e3b1220 (patch) | |
tree | 77d72808fec6793d2657f8fc6f08d36824826295 | |
parent | 7eca78cddeefc23cffbba7c94eb0a1d2ca2ececb (diff) | |
download | fpm-de96c4a53b14f9feb51447923598d87d5e3b1220.tar.gz fpm-de96c4a53b14f9feb51447923598d87d5e3b1220.zip |
Update install.sh
Co-authored-by: Brad Richardson <everythingfunctional@protonmail.com>
-rwxr-xr-x | install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ else echo "Haskell stack not found." echo "Installing Haskell stack to." curl -sSL https://get.haskellstack.org/ | sh - if [[ -x "$install_path/stack" ]]; then + if command -v stack &> /dev/null ; then echo "Haskell stack installation successful." else echo "Haskell stack installation unsuccessful." |