diff options
| author | Fuwn <[email protected]> | 2025-04-23 02:24:39 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-04-23 02:24:39 -0700 |
| commit | d725449e26e1265c5c131e4b51f2970b8e0c7591 (patch) | |
| tree | 675d1251535cc6b4343bc0a6c99af1e86d58c497 | |
| parent | feat(HoloBarApp): Add more avatar fallback levels (diff) | |
| download | holobar-d725449e26e1265c5c131e4b51f2970b8e0c7591.tar.xz holobar-d725449e26e1265c5c131e4b51f2970b8e0c7591.zip | |
build: Swap Make for just
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | Makefile | 16 | ||||
| -rw-r--r-- | justfile | 15 |
3 files changed, 17 insertions, 16 deletions
@@ -15,3 +15,5 @@ build/ # Other .DS_Store +*.just + diff --git a/Makefile b/Makefile deleted file mode 100644 index bb980c2..0000000 --- a/Makefile +++ /dev/null @@ -1,16 +0,0 @@ -.PHONY: default lint format clean build - -default: format lint build - -format: - swiftformat . - -lint: - swiftlint - -clean: - xcodebuild clean - -build: - xcodebuild -configuration Release -scheme HoloBar clean build - diff --git a/justfile b/justfile new file mode 100644 index 0000000..5053c68 --- /dev/null +++ b/justfile @@ -0,0 +1,15 @@ +import? 'xcode.just' + +target := 'HoloBar' + +fetch: + curl https://raw.githubusercontent.com/Fuwn/justfiles/refs/heads/main/xcode.just > xcode.just + +format: + just _format {{target}} + +build: + just _build {{target}} + +open: + just _open {{target}} |