diff options
-rw-r--r-- | debian/changelog | 8 | ||||
-rwxr-xr-x | src/monkeysphere | 2 | ||||
-rwxr-xr-x | src/monkeysphere-server | 2 | ||||
-rwxr-xr-x | src/monkeysphere-ssh-proxycommand | 2 |
4 files changed, 11 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index 6acb8e5..895a5b2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +monkeysphere (0.16-1) UNRELEASED; urgency=low + + [ Daniel Kahn Gillmor ] + * replaced "#!/bin/bash" with "#!/usr/bin/env bash" for better + portability. + + -- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 11 Sep 2008 23:16:31 -0400 + monkeysphere (0.15-1) experimental; urgency=low * porting work and packaging simplification: clarifying makefiles, diff --git a/src/monkeysphere b/src/monkeysphere index e8ca9e2..512d608 100755 --- a/src/monkeysphere +++ b/src/monkeysphere @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # monkeysphere: MonkeySphere client tool # diff --git a/src/monkeysphere-server b/src/monkeysphere-server index 8139387..4cda008 100755 --- a/src/monkeysphere-server +++ b/src/monkeysphere-server @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # monkeysphere-server: MonkeySphere server admin tool # diff --git a/src/monkeysphere-ssh-proxycommand b/src/monkeysphere-ssh-proxycommand index a7b87ca..6276092 100755 --- a/src/monkeysphere-ssh-proxycommand +++ b/src/monkeysphere-ssh-proxycommand @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # monkeysphere-ssh-proxycommand: MonkeySphere ssh ProxyCommand hook # |