diff --git a/Scripts/Bash/Functions/Svn/svn_getOptions.sh b/Scripts/Bash/Functions/Svn/svn_getOptions.sh index 901bf9a..bee8244 100644 --- a/Scripts/Bash/Functions/Svn/svn_getOptions.sh +++ b/Scripts/Bash/Functions/Svn/svn_getOptions.sh @@ -29,7 +29,7 @@ function svn_getOptions { local ARGSS="h,q" # Define long options we want to support. - local ARGSL="help,quiet,sync,update,commit,is-versioned,get-status" + local ARGSL="help,quiet,sync-changes,update,commit,is-versioned,get-status,mkdir,copy" # Redefine ARGUMENTS using getopt(1) command parser. cli_parseArguments @@ -53,7 +53,7 @@ function svn_getOptions { shift 1 ;; - --sync ) + --sync-changes ) ACTIONNAMS="${ACTIONNAMS} svn_syncroRepoChanges" shift 1 ;; @@ -83,6 +83,11 @@ function svn_getOptions { shift 1 ;; + --mkdir ) + ACTIONNAMS="${ACTIONNAMS} svn_mkRepoDirectory" + shift 1 + ;; + -- ) # Remove the `--' argument from the list of arguments # in order for processing non-option arguments