Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/java-ebuilder:master commit in: scripts/
Date: Wed, 30 Oct 2019 17:35:26
Message-Id: 1475749168.be327f018fba69ae853729d309c62fe3adc9b94e.mgorny@gentoo
1 commit: be327f018fba69ae853729d309c62fe3adc9b94e
2 Author: Benda Xu <heroxbd <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 6 10:19:28 2016 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 6 10:19:28 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/java-ebuilder.git/commit/?id=be327f01
7
8 change script shebangs to /bin/bash.
9
10 Because /usr/bin/env gets prefixified anyway.
11
12 scripts/meta.sh | 2 +-
13 scripts/movl | 2 +-
14 scripts/tree.sh | 2 +-
15 3 files changed, 3 insertions(+), 3 deletions(-)
16
17 diff --git a/scripts/meta.sh b/scripts/meta.sh
18 index 935330f..42a45a2 100755
19 --- a/scripts/meta.sh
20 +++ b/scripts/meta.sh
21 @@ -1,4 +1,4 @@
22 -#!/usr/bin/env bash
23 +#!/bin/bash
24 # read in cache from java-ebuilder and find out the groupId,
25 # artifactId and version.
26
27
28 diff --git a/scripts/movl b/scripts/movl
29 index a4d1bac..231ab5d 100755
30 --- a/scripts/movl
31 +++ b/scripts/movl
32 @@ -1,4 +1,4 @@
33 -#!/usr/bin/env bash
34 +#!/bin/bash
35 source /etc/java-ebuilder.conf
36
37 clean-maven() {
38
39 diff --git a/scripts/tree.sh b/scripts/tree.sh
40 index bf387a8..7df27dc 100755
41 --- a/scripts/tree.sh
42 +++ b/scripts/tree.sh
43 @@ -1,4 +1,4 @@
44 -#!/usr/bin/env bash
45 +#!/bin/bash
46 # start from the root of a maven artifact and recursively resolve its
47 # dependencies.