Skip to content

Commit 3cb15af

Browse files
authored
Add justfile (#13189)
1 parent a8c7f59 commit 3cb15af

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

justfile

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
set windows-shell := ["powershell"]
2+
3+
[unix]
4+
gui:
5+
sh ./gg.cmd gradle :jabgui:run
6+
7+
[unix]
8+
checkout-pr pr-id:
9+
sh ./gg.cmd jbang https://github.com/JabRef/jabref/blob/main/.jbang/CheckoutPR.java {{pr-id}}
10+
11+
[windows]
12+
gui:
13+
.\gg.cmd gradle :jabgui:run
14+
15+
[windows]
16+
checkout-pr pr-id:
17+
.\gg.cmd jbang https://github.com/JabRef/jabref/blob/main/.jbang/CheckoutPR.java {{pr-id}}
18+
19+
run-pr pr-id:
20+
just checkout-pr {{pr-id}}
21+
just gui

0 commit comments

Comments
 (0)