diff --git a/src/bin/dotify b/src/bin/dotify index 9a5104d..a120489 100755 --- a/src/bin/dotify +++ b/src/bin/dotify @@ -68,6 +68,7 @@ source "../plugins/git.sh" DOTFILE="" # --dotfile / -f TARGET="" # --target / -t HELP="" # --help / -h +FORCE="" # --force / -F VERSION="" # --version / -v if has-argument dotfile f "$@"; then @@ -82,6 +83,10 @@ if has-argument help h "$@"; then HELP="1" fi +if has-argument force F "$@"; then + FORCE="1" +fi + if has-argument version v "$@"; then VERSION="1" fi