scrap file removals and print dir permissions

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

View File

@ -49,22 +49,7 @@ if [ "$PACKAGE_MODE" = "true" ]; then
echo "###########################"
echo ""
# remove .git folder, .github folder, and _activate-license file if they exist
if [ -d "$UNITY_PROJECT_PATH/.git" ]; then
echo "Removing .git folder."
rm -rf "$UNITY_PROJECT_PATH/.git"
fi
if [ -d "$UNITY_PROJECT_PATH/.github" ]; then
echo "Removing .github folder."
rm -rf "$UNITY_PROJECT_PATH/.github"
fi
if [ -d "$UNITY_PROJECT_PATH/_activate-license" ]; then
echo "Removing _activate-license file."
rm -rf "$UNITY_PROJECT_PATH/_activate-license"
fi
ls -ld "$UNITY_PROJECT_PATH"
ls -a "$UNITY_PROJECT_PATH"
echo ""