mirror of
https://github.com/mintty/wsltty.git
synced 2025-01-18 03:55:49 +00:00
support portable installation into folder with space (#359)
This commit is contained in:
parent
6261ec43ec
commit
49d7a79941
@ -12,8 +12,13 @@ call dequote oldroot
|
||||
call dequote oldhomedir
|
||||
set oldconfigdir="%oldhomedir%\.config\mintty"
|
||||
call dequote oldconfigdir
|
||||
if not "%1" == "" set refinstalldir=%1 && set installdir=%1
|
||||
if not "%2" == "" set refconfigdir=%2 && set configdir=%2
|
||||
rem override installdir, configdir if parameters given
|
||||
set arg1=%1
|
||||
set arg2=%2
|
||||
call dequote arg1
|
||||
call dequote arg2
|
||||
if not "%arg1%" == "" set refinstalldir=%arg1% && set installdir=%arg1%
|
||||
if not "%arg2%" == "" set refconfigdir=%arg2% && set configdir=%arg2%
|
||||
|
||||
|
||||
:deploy
|
||||
|
Loading…
Reference in New Issue
Block a user