@cryptotaxi247 / kubo / commits / f00b8d58e

install.sh: Make success message clearer.

Implement proposal of the comment https://github.com/ipfs/go-ipfs/pull/2504#discussion_r77872959 License: MIT Signed-off-by: Stephan Kulla <git.mail@kulla.me>

Stephan Kulla committed Sep 8, 2016 at 10:03 UTC f00b8d58ec1e218fd8c4c0a74bf981513cdac42f
1 file changed +1 -1
cmd/ipfs/dist/install.sh
+1 -1
@@ -9,7 +9,7 @@ binpaths="/usr/local/bin /usr/bin"
9
10 for binpath in $binpaths; do
11 if mv -t "$binpath" "$bin" 2> /dev/null; then
12 - echo "installed $binpath/$bin"
12 + echo "Moved $bin to $binpath"
13 exit 0
14 fi
15 done