commit | 3fc60b5358dae05d89327ce1a52f6013eafee537 | [log] [tgz] |
---|---|---|
author | Eitan Adler <lists@eitanadler.com> | 周二 4月 17 00:24:58 2012 -0400 |
committer | Eitan Adler <lists@eitanadler.com> | 周二 4月 17 00:24:58 2012 -0400 |
tree | 8de0837e0dbd062d551e2b65d97e148db5a8b368 | |
parent | a74279df5ca49488d0f2b3990e5598c2dc704c91 [diff] |
Fix bogus bash binary location
diff --git a/completion/available/fabric-completion.bash b/completion/available/fabric-completion.bash index a4aa90f..7809b38 100644 --- a/completion/available/fabric-completion.bash +++ b/completion/available/fabric-completion.bash
@@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # # Bash completion support for Fabric (http://fabfile.org/) #
diff --git a/completion/available/rake.completion.bash b/completion/available/rake.completion.bash index 5793bd0..453354f 100644 --- a/completion/available/rake.completion.bash +++ b/completion/available/rake.completion.bash
@@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Bash completion support for Rake, Ruby Make. export COMP_WORDBREAKS=${COMP_WORDBREAKS/\:/}
diff --git a/completion/available/ssh.completion.bash b/completion/available/ssh.completion.bash index ea49026..3dfd6ab 100644 --- a/completion/available/ssh.completion.bash +++ b/completion/available/ssh.completion.bash
@@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Bash completion support for ssh. export COMP_WORDBREAKS=${COMP_WORDBREAKS/\:/}
diff --git a/completion/available/tmux.completion.bash b/completion/available/tmux.completion.bash index e8ee5e7..c872ec5 100644 --- a/completion/available/tmux.completion.bash +++ b/completion/available/tmux.completion.bash
@@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # tmux completion # See: http://www.debian-administration.org/articles/317 for how to write more.