Skip to content

Commit b100882

Browse files
committed
Fix the condition to force rebuild
1 parent aba62a6 commit b100882

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/download.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export LATEST_RUNNER_VERSION=$(curl -sL \
88
log "Latest version is: ${LATEST_RUNNER_VERSION}"
99

1010
download_required() {
11-
if "${FORCE_REBUILD:-false}"; then
11+
if [ "${FORCE_REBUILD:-false}" = "true" ]; then
1212
log "Force rebuild is set. Download required."
1313
return 0
1414
fi

0 commit comments

Comments
 (0)