diff --git a/Scripts/Bash/Functions/Svn/svn.sh b/Scripts/Bash/Functions/Svn/svn.sh
index 9df8313..1e0a906 100644
--- a/Scripts/Bash/Functions/Svn/svn.sh
+++ b/Scripts/Bash/Functions/Svn/svn.sh
@@ -32,14 +32,14 @@ function svn {
     # Define absolute path to Subversion command.
     SVN=/usr/bin/svn
 
+    # Interpret arguments and options passed through command-line.
+    svn_getOptions
+
     # Redefine positional parameters using ARGUMENTS. At this point,
     # option arguments have been removed from ARGUMENTS variable and
     # only non-option arguments remain in it. 
     eval set -- "$ARGUMENTS"
 
-    # Interpret arguments and options passed through command-line.
-    svn_getOptions
-
     # Define action value. We use non-option arguments to define the
     # action value (ACTIONVAL) variable.
     for ACTIONVAL in "$@";do