aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/install.sh b/install.sh
index 862de25..578b156 100755
--- a/install.sh
+++ b/install.sh
@@ -5,13 +5,13 @@ set -e # exit on error
install_path="$HOME/.local/bin"
-if command -v stack &> /dev/null ; then
+if command -v stack 1> /dev/null 2>&1 ; then
echo "found stack"
else
echo "Haskell stack not found."
echo "Installing Haskell stack to."
curl -sSL https://get.haskellstack.org/ | sh
- if command -v stack &> /dev/null ; then
+ if command -v stack 1> /dev/null 2>&1 ; then
echo "Haskell stack installation successful."
else
echo "Haskell stack installation unsuccessful."
@@ -19,14 +19,14 @@ else
fi
fi
-if [[ -x "$install_path/fpm" ]]; then
+if [ -x "$install_path/fpm" ]; then
echo "Overwriting existing fpm installation in $install_path"
fi
cd bootstrap
stack install
-if [[ -x "$install_path/fpm" ]]; then
+if [ -x "$install_path/fpm" ]; then
echo "fpm installed successfully to $install_path"
else
echo "fpm installation unsuccessful: fpm not found in $install_path"