Skip to content

Commit

Permalink
Update entrypoint.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Allan-Nava authored Apr 12, 2023
1 parent dca837a commit ad97966
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ if [ -z "${EXTRA_FILES+x}" ]; then
echo "::warning file=entrypoint.sh,line=33,col=1::EXTRA_FILES not set"
fi
#
if [ -z "${BUILD_ARGS+x}" ]; then
echo "::warning file=entrypoint.sh,line=43,col=1::BUILD_ARGS not set"
export BUILD_ARGS=""
fi
#
FILE_LIST="${FILE_LIST} ${EXTRA_FILES}"
#
FILE_LIST=`echo "${FILE_LIST}" | awk '{$1=$1};1'`
Expand Down Expand Up @@ -77,4 +82,4 @@ curl \
-H 'Content-Type: text/plain' \
-H "Authorization: Bearer ${GITHUB_TOKEN}" \
"${UPLOAD_URL}?name=${NAME}_checksum.txt"
#
#

0 comments on commit ad97966

Please sign in to comment.