diff options
| author | Sebastian Holmin <sebastian.holmin@mullvad.net> | 2023-12-19 10:44:36 +0100 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2024-01-05 16:30:17 +0100 |
| commit | 96b675477ce0cd58acfedf63ec52e608a07afeb3 (patch) | |
| tree | d1ab71844704ed4db50040f53bd5ff985d886538 | |
| parent | f37b61533d7fc544478394755132e89a92041aed (diff) | |
| download | mullvadvpn-96b675477ce0cd58acfedf63ec52e608a07afeb3.tar.xz mullvadvpn-96b675477ce0cd58acfedf63ec52e608a07afeb3.zip | |
Fix shellcheck bash lint
| -rwxr-xr-x | build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -268,7 +268,7 @@ function build { local destination_dir="dist-assets" fi - for binary in ${BINARIES[*]}; do + for binary in "${BINARIES[@]}"; do local source="$cargo_output_dir/$binary" local destination="$destination_dir/$binary" @@ -303,7 +303,7 @@ fi # Compile for all defined targets, or the current architecture if unspecified. if [[ -n ${TARGETS:-""} ]]; then - for t in ${TARGETS[*]}; do + for t in "${TARGETS[@]}"; do source env.sh "$t" build "$t" done |
