diff --git a/README.md b/README.md index acef4ee..ebad3d4 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Just use `*rc` commands instead of original commands # VERSION: anyrc version (default: same as install script version) # DIR: Where to install (default: /usr/local/bin) # FORCE: If defined, override .anyrc (default: undefined) -curl -sS https://raw.githubusercontent.com/amaya382/anyrc/0.0.2/install.sh | DIR=/usr/local/bin bash +curl -sS https://raw.githubusercontent.com/amaya382/anyrc/0.1.0/install.sh | DIR=/usr/local/bin bash # Put your dotfiles or create symlinks of them into $HOME/.anyrc.d ln -s /path/to/your/dotfiles/.dotfile $HOME/.anyrc.d/.dotfile diff --git a/install.sh b/install.sh index 5516d0a..4529422 100755 --- a/install.sh +++ b/install.sh @@ -1,6 +1,6 @@ #!/bin/bash -eu -: ${VERSION:='0.0.2'} +: ${VERSION:='0.1.0'} : ${DIR:='/usr/local/bin'} [ "$(ls -ld ${DIR} | cut -d' ' -f3)" != "${USER}" ] && SUDO='sudo' || SUDO='' echo "Installing anyrc commands into ${DIR} ..."