diff options
author | 2016-10-06 19:19:28 +0900 | |
---|---|---|
committer | 2016-10-06 19:19:28 +0900 | |
commit | be327f018fba69ae853729d309c62fe3adc9b94e (patch) | |
tree | 8570c78a64d49e506beed77bd89dff6014702d38 /scripts | |
parent | movl, meta.sh: query portage related variables at runtime. (diff) | |
download | java-ebuilder-be327f018fba69ae853729d309c62fe3adc9b94e.tar.gz java-ebuilder-be327f018fba69ae853729d309c62fe3adc9b94e.tar.bz2 java-ebuilder-be327f018fba69ae853729d309c62fe3adc9b94e.zip |
change script shebangs to /bin/bash.
Because /usr/bin/env gets prefixified anyway.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/meta.sh | 2 | ||||
-rwxr-xr-x | scripts/movl | 2 | ||||
-rwxr-xr-x | scripts/tree.sh | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/scripts/meta.sh b/scripts/meta.sh index 935330f..42a45a2 100755 --- a/scripts/meta.sh +++ b/scripts/meta.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/bash # read in cache from java-ebuilder and find out the groupId, # artifactId and version. diff --git a/scripts/movl b/scripts/movl index a4d1bac..231ab5d 100755 --- a/scripts/movl +++ b/scripts/movl @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/bash source /etc/java-ebuilder.conf clean-maven() { diff --git a/scripts/tree.sh b/scripts/tree.sh index bf387a8..7df27dc 100755 --- a/scripts/tree.sh +++ b/scripts/tree.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/bash # start from the root of a maven artifact and recursively resolve its # dependencies. |