diff options
Diffstat (limited to 'Assistant/Install.hs')
-rw-r--r-- | Assistant/Install.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Assistant/Install.hs b/Assistant/Install.hs index ff3002221..f7190ecdc 100644 --- a/Assistant/Install.hs +++ b/Assistant/Install.hs @@ -94,7 +94,7 @@ installNautilus program = do installscript (scriptdir </> scriptname action) $ unlines [ "#!/bin/sh" , autoaddedcomment - , program ++ " " ++ action ++ " --notify-start --notify-finish \"$@\"" + , "exec " ++ program ++ " " ++ action ++ " --notify-start --notify-finish -- \"$@\"" ] scriptname action = "git-annex " ++ action installscript f c = whenM (safetoinstallscript f) $ do |