Try building to path with trailing slash

This will hopefully fix an issue where files could not be uploaded
pull/12/head
Webber 2020-01-11 00:03:26 +01:00
parent 5c671e7c1c
commit ee489f7287
1 changed files with 5 additions and 5 deletions

View File

@ -42,8 +42,8 @@ if [ -z "$BUILDS_PATH" ]; then
fi
BUILDS_FULL_PATH=$GITHUB_WORKSPACE/$BUILDS_PATH
BUILD_FOLDER=$BUILD_TARGET-$UNITY_VERSION
CURRENT_BUILD_PATH=$BUILDS_PATH/$BUILD_FOLDER
CURRENT_BUILD_FULL_PATH=$BUILDS_FULL_PATH/$BUILD_FOLDER
CURRENT_BUILD_PATH=$BUILDS_PATH/$BUILD_FOLDER/
CURRENT_BUILD_FULL_PATH=$BUILDS_FULL_PATH/$BUILD_FOLDER/
echo "Using build path \"$CURRENT_BUILD_PATH\"."
#
@ -108,9 +108,9 @@ echo "# Current build dir #"
echo "###########################"
echo ""
#echo "Creating \"$CURRENT_BUILD_FULL_PATH\" if it does not exist."
#mkdir -p $CURRENT_BUILD_FULL_PATH
#ls -alh $CURRENT_BUILD_FULL_PATH
echo "Creating \"$CURRENT_BUILD_FULL_PATH\" if it does not exist."
mkdir -p $CURRENT_BUILD_FULL_PATH
ls -alh $CURRENT_BUILD_FULL_PATH
echo ""
echo "###########################"