summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSlatian <baschdel@disroot.org>2023-12-03 17:20:05 +0100
committerSimon Lees <simon@simotek.net>2023-12-04 00:13:41 +0000
commitd4f00e1d803038af4f245949d8c747a384117852 (patch)
tree9bb9a67fe82529ccfc4842c3d6cf747a7fcf556d
parent0f49cf5d7956076fccd599d82b85946e5e49d473 (diff)
Fixed missing `$` for variable
-rwxr-xr-xscripts/xdg-open.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/xdg-open.in b/scripts/xdg-open.in
index 1373ca1..297cb0c 100755
--- a/scripts/xdg-open.in
+++ b/scripts/xdg-open.in
@@ -377,7 +377,7 @@ search_desktop_file()
esac
args=$(( args - 1 ))
done
- [ $replaced -eq 1 ] || set -- "$@" "${target:-target_uri}"
+ [ $replaced -eq 1 ] || set -- "$@" "${target:-$target_uri}"
env "$command" "$@"
exit_success
fi