mirror of
https://github.com/permissionlesstech/bitchat.git
synced 2026-07-25 04:05:20 +00:00
Excludes Index.noindex in Justfile (#440)
This commit is contained in:
@@ -57,7 +57,7 @@ build: check generate
|
|||||||
# Run the macOS app
|
# Run the macOS app
|
||||||
run: build
|
run: build
|
||||||
@echo "Launching BitChat..."
|
@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 build artifacts and restore original files
|
||||||
clean: restore
|
clean: restore
|
||||||
@@ -78,7 +78,7 @@ dev-run: check
|
|||||||
@if [ ! -f project.yml.backup ]; then just patch-for-macos; fi
|
@if [ ! -f project.yml.backup ]; then just patch-for-macos; fi
|
||||||
@xcodegen generate
|
@xcodegen generate
|
||||||
@xcodebuild -project bitchat.xcodeproj -scheme "bitchat (macOS)" -configuration Debug CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGN_ENTITLEMENTS="" build
|
@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
|
# Show app info
|
||||||
info:
|
info:
|
||||||
|
|||||||
Reference in New Issue
Block a user