summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMateusz Matoszko <2045823+mmatoszko@users.noreply.github.com>2025-08-15 23:06:37 +0200
committerGitHub <noreply@github.com>2025-08-15 23:06:37 +0200
commit47b08296851b64fcb57eb94a091e1b590783a620 (patch)
treec6c5130e5cfc544562bf9d709762c387b5ac2c41
parent030d6e0f1177810e81ffddcf06c2c4a7ad32ed48 (diff)
Excludes Index.noindex in Justfile (#440)HEADmain
-rw-r--r--Justfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Justfile b/Justfile
index 26ad381..4cc02ef 100644
--- a/Justfile
+++ b/Justfile
@@ -57,7 +57,7 @@ build: check generate
# Run the macOS app
run: build
@echo "Launching BitChat..."
- @find ~/Library/Developer/Xcode/DerivedData -name "bitchat.app" -path "*/Debug/*" | head -1 | xargs -I {} open "{}"
+ @find ~/Library/Developer/Xcode/DerivedData -name "bitchat.app" -path "*/Debug/*" -not -path "*/Index.noindex/*" | head -1 | xargs -I {} open "{}"
# Clean build artifacts and restore original files
clean: restore
@@ -78,7 +78,7 @@ dev-run: check
@if [ ! -f project.yml.backup ]; then just patch-for-macos; fi
@xcodegen generate
@xcodebuild -project bitchat.xcodeproj -scheme "bitchat (macOS)" -configuration Debug CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGN_ENTITLEMENTS="" build
- @find ~/Library/Developer/Xcode/DerivedData -name "bitchat.app" -path "*/Debug/*" | head -1 | xargs -I {} open "{}"
+ @find ~/Library/Developer/Xcode/DerivedData -name "bitchat.app" -path "*/Debug/*" -not -path "*/Index.noindex/*" | head -1 | xargs -I {} open "{}"
# Show app info
info: