We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62526ae commit c19859bCopy full SHA for c19859b
.justfile
@@ -1,4 +1,4 @@
1
-open := if os() == "macos" { "open" } else { "xdg-open" }
+open := if os() == "macos" { "open" } else if os() == "windows" { "start" } else { "xdg-open" }
2
3
#@default:
4
# just --choose
@@ -12,7 +12,7 @@ test:
12
./gradlew test
13
14
preitest := if path_exists('build/install/jbang/bin') != 'true' {
15
- './gradlew installDist -x test'
+ './gradlew spotlessApply installDist -x test'
16
} else {
17
''
18
}
0 commit comments