mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-02 20:36:44 +00:00
8 lines
111 B
Batchfile
8 lines
111 B
Batchfile
@echo off
|
|
set ARGS=%*
|
|
|
|
if "%ARGS%" == "" (
|
|
gradlew.bat run
|
|
) else (
|
|
gradlew.bat run --args="%ARGS%"
|
|
)
|