cp test -r changed to cp -r test ...

in OSX arguments must be exactly after their commands.
This commit is contained in:
amirhoshangi@gmail.com 2014-09-29 22:56:13 +03:30
parent 91ddfabc3c
commit b5f690bf35
1 changed files with 1 additions and 1 deletions

View File

@ -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
}