summaryrefslogtreecommitdiff
path: root/update-all.in
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2019-11-08 10:24:41 +0100
committerErich Eckner <git@eckner.net>2019-11-08 10:24:41 +0100
commit7f843d3dcc4863e508337dafd1922b7a72ab4477 (patch)
tree8cbc7763fec64335ff7521e863066c1f277ecfe9 /update-all.in
parent093daa406d575fdbbd84b65f770d4e7b5ba01b14 (diff)
downloadupdate-all-7f843d3dcc4863e508337dafd1922b7a72ab4477.tar.xz
update-all.in: less quotes for screen and urxvt
Diffstat (limited to 'update-all.in')
-rw-r--r--update-all.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/update-all.in b/update-all.in
index 6eea1a7..c82ebc6 100644
--- a/update-all.in
+++ b/update-all.in
@@ -37,9 +37,9 @@ pids=()
for system in "${!systems[@]}"; do
if [ -z "${DISPLAY}" ]; then
- screen -S update-all -d -m "'$0' '${system}' '${tmp_dir}'"
+ screen -S update-all -d -m "${0}" "${system}" "${tmp_dir}"
else
- urxvt -title "${systems["${system}"]}: update-me" -e "'$0' '${system}' '${tmp_dir}'" &
+ urxvt -title "${systems["${system}"]}: update-me" -e "${0}" "${system}" "${tmp_dir}" &
pids+=($!)
fi
done