Skip to content

Commit 3b02436

Browse files
authored
Fixed wrong path to GenerateProjects.bat when using BuildAll.bat (#617)
1 parent 94d83c9 commit 3b02436

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Scripts/Linux/BuildAll.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ CONFIGURATION="${1:-debug}"
77
CONFIG_LOWER=$(echo "$CONFIGURATION" | tr '[:upper:]' '[:lower:]')
88

99
# Generate the projects
10-
pushd "$(dirname "$0")/.." > /dev/null
11-
./Linux/GenerateProjects.sh gmake
10+
pushd "$(dirname "$0")" > /dev/null
11+
./GenerateProjects.sh gmake
1212
popd > /dev/null
1313

1414
# Build the solution

Scripts/Windows/BuildAll.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ setlocal enabledelayedexpansion
55
set "CONFIGURATION=%~1"
66

77
:: Generate the projects
8-
pushd "%~dp0\..\"
8+
pushd "%~dp0"
99
call GenerateProjects vs2022 %CONFIGURATION%
1010
popd
1111

0 commit comments

Comments
 (0)