diff options
Diffstat (limited to 'justfile')
| -rw-r--r-- | justfile | 15 |
1 files changed, 15 insertions, 0 deletions
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}} |