Skip to content

Commit

Permalink
install.sh: Add error message at the end.
Browse files Browse the repository at this point in the history
  • Loading branch information
kulla committed Sep 6, 2016
1 parent 15368c7 commit 3dc0fb3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cmd/ipfs/dist/install.sh
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
#!/bin/sh

bin=ipfs
binpaths="/usr/local/bin /usr/bin"

# this script is currently brain dead.
# it merely tries two locations.
# in the future maybe use value of $PATH.

for binpath in /usr/local/bin /usr/bin; do
for binpath in $binpaths; do
if [ -d "$binpath" ]; then
mv "$bin" "$binpath/$bin"
echo "installed $binpath/$bin"
exit 0
fi
done

echo "cannot install $bin in one of the directories $binpaths"
exit 1

1 comment on commit 3dc0fb3

@GitCop
Copy link

@GitCop GitCop commented on 3dc0fb3 Sep 6, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There were the following issues with your Pull Request

We ask for a few features in the commit message for Open Source licensing hygiene and commit message clarity.
git commit --amend can often help you quickly improve the commit message.
Guidelines and a script are available to help in the long run.
Your feedback on GitCop is welcome on this issue.


This message was auto-generated by https://gitcop.com

Please sign in to comment.