File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ echo Installing Square IntelliJ configs...
4
4
5
5
setlocal enableDelayedExpansion
6
6
7
- for /D %%i in (%userprofile% \.AndroidStudio*) do call :copy_config %%i
8
- for /D %%i in (%userprofile% \.IdeaIC*) do call :copy_config %%i
9
- for /D %%i in (%userprofile% \.IntelliJIdea*) do call :copy_config %%i
7
+ for /D %%i in (" %userprofile% " \.AndroidStudio*) do call :copy_config " %%i "
8
+ for /D %%i in (" %userprofile% " \.IdeaIC*) do call :copy_config " %%i "
9
+ for /D %%i in (" %userprofile% " \.IntelliJIdea*) do call :copy_config " %%i "
10
10
11
11
echo .
12
12
echo Restart IntelliJ and/or AndroidStudio, go to preferences, and apply 'Square' or 'SquareAndroid'.
@@ -15,8 +15,8 @@ exit /b
15
15
REM sub function for copy config files
16
16
:copy_config
17
17
set config_dir = %~1 \config
18
- echo Installing to !config_dir!
19
- xcopy /s configs !config_dir!
18
+ echo Installing to " !config_dir! "
19
+ xcopy /s configs " !config_dir! "
20
20
echo Done.
21
21
echo .
22
22
exit /b
You can’t perform that action at this time.
0 commit comments