diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | justfile | 15 |
2 files changed, 16 insertions, 0 deletions
@@ -15,4 +15,5 @@ build/ # Other .DS_Store +*.just diff --git a/justfile b/justfile new file mode 100644 index 0000000..6ed528d --- /dev/null +++ b/justfile @@ -0,0 +1,15 @@ +import? 'xcode.just' + +target := 'Sora' + +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}} |