Skip to content

Commit

Permalink
Fix INSTALL_DIR check
Browse files Browse the repository at this point in the history
  • Loading branch information
casouri committed Apr 8, 2024
1 parent 0380588 commit f5f4fd2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,9 @@ else
fi

### Copy out
if [ -z "${INSTALL_DIR+x}" ]; then

# use default dist location if INSTALL_DIR is unset or empty.
if [ -n "${INSTALL_DIR-}" ]; then
dist_dir="${INSTALL_DIR}"
else
dist_dir="${topdir}/dist"
Expand Down

0 comments on commit f5f4fd2

Please sign in to comment.