Skip to content

Commit 3cc1b87

Browse files
committed
fix add local clean and build scripts
1 parent 7c3d134 commit 3cc1b87

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

build-them.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ create_macos_app_bundle() {
3939
# Copy the icon file
4040
echo "Copying icon file..."
4141

42-
cp "OpenIPC/OpenIPC_Config/Assets/Icons/OpenIPC.icns" "$app_bundle/Contents/Resources/$app_name.icns"
42+
cp "OpenIPC_Config/Assets/Icons/OpenIPC.icns" "$app_bundle/Contents/Resources/$app_name.icns"
4343

4444
# Move the executable file
4545
echo "Moving executable to .app bundle..."

clean.sh

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
3+
echo "Cleaning previous builds..."
4+
rm -rf build
5+
6+
dotnet clean
7+
find . -name bin -exec rm -rf {} +
8+
find . -name obj -exec rm -rf {} +
9+
10+
echo "Done."

0 commit comments

Comments
 (0)