regenerate script usable from anywhere

This commit is contained in:
2024-04-02 10:29:05 +02:00
parent ffc6304f6e
commit 6d79bc7a05
2 changed files with 4 additions and 4 deletions

View File

@@ -1,10 +1,10 @@
#!/bin/bash #!/bin/bash
cd .. cd "$(dirname "$0")/.."
PROJECT_NAME=`find . -name "*.uproject" -exec basename {} .uproject \;` PROJECT_NAME=$(find . -name "*.uproject" -exec basename {} .uproject \;)
sh Script/remove_binaries.sh sh remove_binaries.sh
rm -rf $PROJECT_NAME.code-workspace\ rm -rf $PROJECT_NAME.code-workspace\
Makefile\ Makefile\

View File

@@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
cd .. cd "$(dirname "$0")/.."
rm -rf Binaries\ rm -rf Binaries\
DerivedDataCache\ DerivedDataCache\