From ca3dec0ae13efa7b73ac83b4f282f95bfdb18515 Mon Sep 17 00:00:00 2001 From: Adrian Malacoda Date: Sun, 10 Oct 2021 23:42:49 -0500 Subject: [PATCH] don't quote @JAR_PATH@ as this prevents ~ from being escaped --- desktop/piecannon.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/piecannon.in b/desktop/piecannon.in index 68b1ec1..0c9cc20 100644 --- a/desktop/piecannon.in +++ b/desktop/piecannon.in @@ -1,5 +1,5 @@ #!/bin/sh -JAR_PATH="@JAR_PATH@" +JAR_PATH=@JAR_PATH@ if [ "$1" = "--file-selector" ]; then RESULT=$(java -jar "$JAR_PATH" $(yad --file))