Explorar o código

Fix quoting of arguments in run-query

Samuel W. Flint %!s(int64=5) %!d(string=hai) anos
pai
achega
5ae59b49b2
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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