Update build.sh
This commit is contained in:
parent
04bdd59395
commit
f4c7d5ff64
5
build.sh
5
build.sh
@ -1,5 +1,4 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
IFS='.' read -r __major __minor _ <<< "${BASH_VERSION:-0.0.0}"
|
IFS='.' read -r __major __minor _ <<< "${BASH_VERSION:-0.0.0}"
|
||||||
if [ "$__major" -lt 4 ] || { [ "$__major" -eq 4 ] && [ "$__minor" -lt 3 ]; }; then
|
if [ "$__major" -lt 4 ] || { [ "$__major" -eq 4 ] && [ "$__minor" -lt 3 ]; }; then
|
||||||
@ -10,6 +9,9 @@ if [ "$__major" -lt 4 ] || { [ "$__major" -eq 4 ] && [ "$__minor" -lt 3 ]; }; th
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
shopt -s nullglob
|
||||||
|
|
||||||
cd "$(dirname "$0")"
|
cd "$(dirname "$0")"
|
||||||
|
|
||||||
declare -A files
|
declare -A files
|
||||||
@ -233,7 +235,6 @@ generate_pac() {
|
|||||||
|
|
||||||
is_up_to_date=true
|
is_up_to_date=true
|
||||||
files_to_be_deleted=(proxy.pac)
|
files_to_be_deleted=(proxy.pac)
|
||||||
shopt -s nullglob
|
|
||||||
for file in "$0" *.js *.txt; do
|
for file in "$0" *.js *.txt; do
|
||||||
if [ "$file" -nt proxy.pac ]; then
|
if [ "$file" -nt proxy.pac ]; then
|
||||||
is_up_to_date=false
|
is_up_to_date=false
|
||||||
|
Loading…
Reference in New Issue
Block a user