Skip to content

Commit

Permalink
Update windows_repro_build_compare.sh to allow for windows Redist dev…
Browse files Browse the repository at this point in the history
… kit

Signed-off-by: Andrew Leonard <[email protected]>
  • Loading branch information
andrew-m-leonard committed Nov 4, 2024
1 parent 8511700 commit 4636348
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sbin/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ configureDevKitConfigureParameter() {
echo "HERE!"

# Default to build architecture unless target ARCHITECTURE variable is set
def target_arch="${BUILD_CONFIG[OS_ARCHITECTURE]}"
if [[ ! -z "${ARCHITECTURE+x}" ]]; then
local target_arch="${BUILD_CONFIG[OS_ARCHITECTURE]}"
if [[ -n "${ARCHITECTURE+x}" ]]; then
target_arch="${ARCHITECTURE}"
fi
echo "Target architecture for Windows devkit: ${target_arch}"
Expand Down

0 comments on commit 4636348

Please sign in to comment.