fix license activation files deletion

pull/164/head
Aaron Trudeau 2022-06-30 21:01:28 -04:00
parent 9169a99f4e
commit c9301a22f2
No known key found for this signature in database
GPG Key ID: D6874B046ABF9536
1 changed files with 2 additions and 2 deletions

View File

@ -60,9 +60,9 @@ if [ "$PACKAGE_MODE" = "true" ]; then
rm -rf "$UNITY_PROJECT_PATH/.github"
fi
if [ -f "$UNITY_PROJECT_PATH/_activate-license" ]; then
if [ -d "$UNITY_PROJECT_PATH/_activate-license" ]; then
echo "Removing _activate-license file."
rm -f "$UNITY_PROJECT_PATH/_activate-license"
rm -rf "$UNITY_PROJECT_PATH/_activate-license"
fi
ls -a "$UNITY_PROJECT_PATH"