summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Lees <sflees@suse.de>2023-08-31 11:21:58 +0930
committerSimon Lees <sflees@suse.de>2023-08-31 11:21:58 +0930
commitadf064ae472b4cacf11f04f5265a0a86980e4ced (patch)
tree7843095f53c3b69de8ccfdff69b5404d3a5ef757
parentd0b765f4879ea784bfa3c4cb91e5c9240e5df52e (diff)
Revert putting process in background from !55
!55 changed the behavior of the generic implementation to background processes to make the behavior more similar to the other implementations. However as per #224 this leads to a workflow break for some users so given that change was only done for consistency we will revert it for now. Fixes: #224
-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 1f925da..c1bf58e 100755
--- a/scripts/xdg-open.in
+++ b/scripts/xdg-open.in
@@ -356,7 +356,7 @@ search_desktop_file()
args=$(( $args - 1 ))
done
[ $replaced -eq 1 ] || set -- "$@" "$target"
- env "$command" "$@" &
+ env "$command" "$@"
exit_success
fi
fi