Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'git-web--browse.sh')
-rwxr-xr-xgit-web--browse.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/git-web--browse.sh b/git-web--browse.sh
index 8ed489d882..2c51f361d1 100755
--- a/git-web--browse.sh
+++ b/git-web--browse.sh
@@ -129,7 +129,7 @@ case "$browser" in
vers=$(expr "$($browser_path -version)" : '.* \([0-9][0-9]*\)\..*')
NEWTAB='-new-tab'
test "$vers" -lt 2 && NEWTAB=''
- nohup "$browser_path" $NEWTAB "$@" &
+ "$browser_path" $NEWTAB "$@" &
;;
konqueror)
case "$(basename "$browser_path")" in
@@ -143,7 +143,7 @@ case "$browser" in
eval "$browser_path" newTab "$@"
;;
*)
- nohup "$browser_path" "$@" &
+ "$browser_path" "$@" &
;;
esac
;;
@@ -151,6 +151,6 @@ case "$browser" in
eval "$browser_path" "$@"
;;
dillo)
- nohup "$browser_path" "$@" &
+ "$browser_path" "$@" &
;;
esac