We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bc7e99 commit 53b96a6Copy full SHA for 53b96a6
scripts/github-actions/generate.sh
@@ -12,10 +12,13 @@ if ! command -v bashbrew &> /dev/null; then
12
dir="$(readlink -f "$BASH_SOURCE")"
13
dir="$(dirname "$dir")"
14
dir="$(cd "$dir/../.." && pwd -P)"
15
- echo >&2 'Building bashbrew ...'
16
- "$dir/bashbrew.sh" --version > /dev/null
+ if [ ! -x "$dir/bin/bashbrew" ]; then
+ echo >&2 'Building bashbrew ...'
17
+ "$dir/bashbrew.sh" --version > /dev/null
18
+ "$dir/bin/bashbrew" --version >&2
19
+ fi
20
export PATH="$dir/bin:$PATH"
- bashbrew --version >&2
21
+ bashbrew --version > /dev/null
22
fi
23
24
mkdir "$tmp/library"
0 commit comments