From b5f690bf35b0bcf74f1b7d7605a41bac356f673f Mon Sep 17 00:00:00 2001 From: "amirhoshangi@gmail.com" Date: Mon, 29 Sep 2014 22:56:13 +0330 Subject: [PATCH] cp test -r changed to cp -r test ... in OSX arguments must be exactly after their commands. --- 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 6257178..db3e76c 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/ -rv + sudo cp -r .build/share /usr/local/ sudo ln -f -s `pwd`/kuso /usr/local/bin/kuso }