summarylogtreecommitdiffstats
path: root/smallpdf
diff options
context:
space:
mode:
authorSilvan Jegen2018-05-31 14:29:42 +0200
committerSilvan Jegen2018-05-31 14:34:05 +0200
commitd9e8bab2fbc11bf2a3ea616c2a3749a4a4b0f96e (patch)
treee70b4180ef7982261e3487d1da2f0b11f489920c /smallpdf
parent127a6bf4b7094958b95f3b3069881bc468c1bfeb (diff)
downloadaur-d9e8bab2fbc11bf2a3ea616c2a3749a4a4b0f96e.tar.gz
Quote script arguments
Otherwise we cannot deal with file names containing spaces. Thanks to max at smallpdf.com for the report!
Diffstat (limited to 'smallpdf')
-rwxr-xr-xsmallpdf2
1 files changed, 1 insertions, 1 deletions
diff --git a/smallpdf b/smallpdf
index 746e92b19e08..2d0b6ee4882b 100755
--- a/smallpdf
+++ b/smallpdf
@@ -1,2 +1,2 @@
#!/bin/env sh
-/opt/smallpdf-desktop/Smallpdf $@ > /dev/null
+/opt/smallpdf-desktop/Smallpdf "$@" > /dev/null