diff options
author | LKedward <laurence.kedward@bristol.ac.uk> | 2020-11-10 13:57:08 +0000 |
---|---|---|
committer | LKedward <laurence.kedward@bristol.ac.uk> | 2020-11-10 13:57:08 +0000 |
commit | b745a82cc0c2bfd33f1775496420a051f3909e3d (patch) | |
tree | 8407e3c0c29e37d89248d93d9751b74230181047 /install.sh | |
parent | 144046926629b94da1b18ad19038e4c9ec372b2a (diff) | |
parent | d569a89d7d059a5ba914e51d6fd7b32132b33c5e (diff) | |
download | fpm-b745a82cc0c2bfd33f1775496420a051f3909e3d.tar.gz fpm-b745a82cc0c2bfd33f1775496420a051f3909e3d.zip |
Merge branch 'upstream_master' into refactor-run-cmd
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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" |