mirror of
https://github.com/syncthing/syncthing.git
synced 2025-12-23 22:18:14 -05:00
21 lines
264 B
PowerShell
21 lines
264 B
PowerShell
function build {
|
|
go run build.go @args
|
|
}
|
|
|
|
$cmd, $rest = $args
|
|
switch ($cmd) {
|
|
"test" {
|
|
$env:LOGGER_DISCARD=1
|
|
build test
|
|
}
|
|
|
|
"bench" {
|
|
$env:LOGGER_DISCARD=1
|
|
build bench
|
|
}
|
|
|
|
default {
|
|
build @rest
|
|
}
|
|
}
|