mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2025-03-17 13:22:40 +01:00
9 lines
111 B
Batchfile
9 lines
111 B
Batchfile
@echo off
|
|
set ARGS=%*
|
|
|
|
if "%ARGS%" == "" (
|
|
gradlew.bat run
|
|
) else (
|
|
gradlew.bat run --args="%ARGS%"
|
|
)
|