Browse Source

Fixed expansion in git functionality for library management script

Samuel W. Flint 7 years ago
parent
commit
fe6cb367f5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      library

+ 1 - 1
library

@@ -77,7 +77,7 @@ function do_git {
         if [[ $GIT == "detect" ]] ; then
             OLD=`pwd`
             cd ${LIBRARYDIRECTORY}
-            git $@
+            git "$@"
             cd ${OLD}
         fi
     fi