blob: 664798093cc53a25bac98c166fbea8cf02d0237e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# 🍩 Justfiles
> Base Justfiles for Repetitive Tasks to Be Imported Remotely
## Example (Xcode)
```justfile
import? 'xcode.just'
target := 'Sora'
# Run `just fetch` to fetch the latest Xcode tasks
fetch:
curl https://raw.githubusercontent.com/Fuwn/justfiles/refs/heads/main/xcode.just > xcode.just
# Override any tasks that have required arguments specific to your environment
format:
just _format {{target}}
build:
just _build {{target}}
open:
just _open {{target}}
```
## License
This project is licensed under the terms of [The Unlicense](./LICENSE.txt).
|