mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-04 12:25:19 -04:00
Nest an extra folder for build folder...
This is to prevent conflicts when exporting files instead of a folder
This commit is contained in:
parent
23cbff9b19
commit
4b7e84c846
@ -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/$BUILD_FOLDER
|
||||
CURRENT_BUILD_FULL_PATH=$BUILDS_FULL_PATH/$BUILD_FOLDER/$BUILD_FOLDER
|
||||
echo "Using build path \"$CURRENT_BUILD_PATH\"."
|
||||
|
||||
#
|
||||
@ -108,9 +108,12 @@ 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."
|
||||
echo "Creating \"$BUILDS_FULL_PATH/$BUILD_FOLDER\" if it does not exist."
|
||||
#mkdir -p $CURRENT_BUILD_FULL_PATH
|
||||
mkdir -p $BUILDS_FULL_PATH/$BUILD_FOLDER
|
||||
#ls -alh $CURRENT_BUILD_FULL_PATH
|
||||
ls -alh $BUILDS_FULL_PATH/$BUILD_FOLDER
|
||||
|
||||
echo ""
|
||||
echo "###########################"
|
||||
|
Loading…
Reference in New Issue
Block a user