Parcourir la source

Fix quoting of arguments in run-query

Samuel W. Flint il y a 5 ans
Parent
commit
5ae59b49b2
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      library.org

+ 1 - 1
library.org

@@ -237,7 +237,7 @@ This handles git as needed, by first checking to see if the first argument is ~i
 #+Name: handle-query
 #+BEGIN_SRC sh
   function run_query {
-      recsel -t Book $@ ${LIBRARYFILE}
+      recsel -t Book "$@" ${LIBRARYFILE}
   }
 #+END_SRC