|
40 | 40 | @REM update the Pacman package indices first, then force-install msys2-runtime |
41 | 41 | @REM (we ship with a stripped-down msys2-runtime, gpg and pacman), so that |
42 | 42 | @REM pacman's post-install scripts run without complaining about heap problems |
43 | | -@%cwd%\usr\bin\pacman -Sy --force --noconfirm msys2-runtime |
| 43 | +@"%cwd%"\usr\bin\pacman -Sy --force --noconfirm msys2-runtime |
44 | 44 |
|
45 | 45 | @IF ERRORLEVEL 1 GOTO INSTALL_RUNTIME |
46 | 46 |
|
|
54 | 54 | ) |
55 | 55 |
|
56 | 56 | @REM next, force update pacman, but first we need bash and info for that. |
57 | | -@%cwd%\usr\bin\pacman -S --force --noconfirm bash info pacman |
| 57 | +@"%cwd%"\usr\bin\pacman -S --force --noconfirm bash info pacman |
58 | 58 |
|
59 | 59 | @IF ERRORLEVEL 1 GOTO INSTALL_PACMAN |
60 | 60 |
|
|
68 | 68 | ) |
69 | 69 |
|
70 | 70 | @REM now update the rest |
71 | | -@%cwd%\usr\bin\pacman -S --force --noconfirm ^ |
| 71 | +@"%cwd%"\usr\bin\pacman -S --force --noconfirm ^ |
72 | 72 | base python less openssh patch make tar diffutils ca-certificates ^ |
73 | 73 | git perl-Error perl perl-Authen-SASL perl-libwww perl-MIME-tools ^ |
74 | 74 | perl-Net-SMTP-SSL perl-TermReadKey dos2unix asciidoc xmlto ^ |
|
84 | 84 | @REM Avoid overlapping address ranges |
85 | 85 | @IF MINGW32 == %MSYSTEM% @( |
86 | 86 | ECHO Auto-rebasing .dll files |
87 | | - CALL %cwd%\autorebase.bat |
| 87 | + CALL "%cwd%"\autorebase.bat |
88 | 88 | ) |
89 | 89 |
|
90 | 90 | @REM If an HTTP proxy is requires, configure it for Git Bash sessions, |
|
99 | 99 |
|
100 | 100 | @REM Before running a shell, let's prevent complaints about "permission denied" |
101 | 101 | @REM from MSys2's /etc/post-install/01-devices.post |
102 | | -@MKDIR %cwd%\dev\shm 2> NUL |
103 | | -@MKDIR %cwd%\dev\mqueue 2> NUL |
| 102 | +@MKDIR "%cwd%"\dev\shm 2> NUL |
| 103 | +@MKDIR "%cwd%"\dev\mqueue 2> NUL |
104 | 104 |
|
105 | 105 | @IF NOT DEFINED JENKINS_URL @( |
106 | 106 | @REM Install shortcut on the desktop |
|
0 commit comments