From b0b319baaf246402746319dde3824f3ae79d8bb0 Mon Sep 17 00:00:00 2001 From: Sameer Rahmani Date: Wed, 19 Mar 2014 16:23:36 +0330 Subject: [PATCH] do_install bug fixed --- scripts/install_files.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install_files.sh b/scripts/install_files.sh index 06a0b39..93a5caf 100644 --- a/scripts/install_files.sh +++ b/scripts/install_files.sh @@ -16,6 +16,6 @@ function do_install() { info "Install files in /usr/local/share" info "If you are not a sudoer just copy ./.build/share to /usr/local/share manually" info "and create a link to ./kuso in your /usr/local/bin/kuso" - sudo cp .build/share /usr/local/share -rv + sudo cp .build/share /usr/local -rv sudo ln -f -s `pwd`/kuso /usr/local/bin/kuso }