diff options
author | Joey Hess <joey@kitenet.net> | 2014-03-23 08:17:03 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-03-23 08:17:03 -0400 |
commit | 2d7281bf16408e4ce86eb204385ed8eb2e13a4c8 (patch) | |
tree | 37fd8692ae02a74426df1a9ed1a927dc133b123a /Assistant | |
parent | 9f81bfcf67f75355c4c2799dd9be66d374049deb (diff) |
use shebang lib
Diffstat (limited to 'Assistant')
-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 f7190ecdc..4d02c0ece 100644 --- a/Assistant/Install.hs +++ b/Assistant/Install.hs @@ -92,7 +92,7 @@ installNautilus program = do where genscript scriptdir action = installscript (scriptdir </> scriptname action) $ unlines - [ "#!/bin/sh" + [ shebang_local , autoaddedcomment , "exec " ++ program ++ " " ++ action ++ " --notify-start --notify-finish -- \"$@\"" ] |