Skip to content

Commit 78fdbb4

Browse files
authored
FIX: Spaces in Directory Path (#65)
1 parent 1887af5 commit 78fdbb4

6 files changed

Lines changed: 12 additions & 12 deletions

Builder/Build_HEVD_Secure_arm64.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ echo [+] Build directory: %BUILD_DIR%
4747
echo [+] Removing build directory
4848

4949
if exist %BUILD_DIR% (
50-
rmdir /S /Q %BUILD_DIR%
50+
rmdir /S /Q "%BUILD_DIR%"
5151
)
5252

5353
echo [+] Creating build directory
5454

55-
mkdir %BUILD_DIR%
55+
mkdir "%BUILD_DIR%"
5656
cd %BUILD_DIR%
5757

5858
echo [+] Generating build configuration files

Builder/Build_HEVD_Secure_x64.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ echo [+] Build directory: %BUILD_DIR%
4747
echo [+] Removing build directory
4848

4949
if exist %BUILD_DIR% (
50-
rmdir /S /Q %BUILD_DIR%
50+
rmdir /S /Q "%BUILD_DIR%"
5151
)
5252

5353
echo [+] Creating build directory
5454

55-
mkdir %BUILD_DIR%
55+
mkdir "%BUILD_DIR%"
5656
cd %BUILD_DIR%
5757

5858
echo [+] Generating build configuration files

Builder/Build_HEVD_Secure_x86.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ echo [+] Build directory: %BUILD_DIR%
4747
echo [+] Removing build directory
4848

4949
if exist %BUILD_DIR% (
50-
rmdir /S /Q %BUILD_DIR%
50+
rmdir /S /Q "%BUILD_DIR%"
5151
)
5252

5353
echo [+] Creating build directory
5454

55-
mkdir %BUILD_DIR%
55+
mkdir "%BUILD_DIR%"
5656
cd %BUILD_DIR%
5757

5858
echo [+] Generating build configuration files

Builder/Build_HEVD_Vulnerable_arm64.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ echo [+] Build directory: %BUILD_DIR%
4747
echo [+] Removing build directory
4848

4949
if exist %BUILD_DIR% (
50-
rmdir /S /Q %BUILD_DIR%
50+
rmdir /S /Q "%BUILD_DIR%"
5151
)
5252

5353
echo [+] Creating build directory
5454

55-
mkdir %BUILD_DIR%
55+
mkdir "%BUILD_DIR%"
5656
cd %BUILD_DIR%
5757

5858
echo [+] Generating build configuration files

Builder/Build_HEVD_Vulnerable_x64.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ echo [+] Build directory: %BUILD_DIR%
4747
echo [+] Removing build directory
4848

4949
if exist %BUILD_DIR% (
50-
rmdir /S /Q %BUILD_DIR%
50+
rmdir /S /Q "%BUILD_DIR%"
5151
)
5252

5353
echo [+] Creating build directory
5454

55-
mkdir %BUILD_DIR%
55+
mkdir "%BUILD_DIR%"
5656
cd %BUILD_DIR%
5757

5858
echo [+] Generating build configuration files

Builder/Build_HEVD_Vulnerable_x86.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ echo [+] Build directory: %BUILD_DIR%
4747
echo [+] Removing build directory
4848

4949
if exist %BUILD_DIR% (
50-
rmdir /S /Q %BUILD_DIR%
50+
rmdir /S /Q "%BUILD_DIR%"
5151
)
5252

5353
echo [+] Creating build directory
5454

55-
mkdir %BUILD_DIR%
55+
mkdir "%BUILD_DIR%"
5656
cd %BUILD_DIR%
5757

5858
echo [+] Generating build configuration files

0 commit comments

Comments
 (0)