Force remove build/deploy folder in create_all_releases script (#956)

This commit is contained in:
Murat Seker
2020-08-08 16:51:23 +02:00
committed by GitHub
parent a18ccb8b48
commit 4099d12d9a
3 changed files with 2 additions and 471 deletions

View File

@@ -10,9 +10,9 @@ make_release()
PLATFORM=$2
shift 2
rm -r build-${RELEASE}
rm -rf build-${RELEASE}
mkdir -p build-${RELEASE}
rm -r deploy/${RELEASE}
rm -rf deploy/${RELEASE}
mkdir -p deploy/${RELEASE}
cd build-${RELEASE}