Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ISOs/download_and_extract.bat
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ if not exist Standalone (
if ERRORLEVEL 1 goto FAIL
if exist _Standalone rmdir /s /q _Standalone
mkdir _Standalone
start "foo" /wait sdksetup.exe /quiet /features OptionId.WindowsDesktopDebuggers OptionId.WindowsDesktopSoftwareDevelopmentKit /layout _Standalone
start "foo" /wait sdk_setup.exe /quiet /features OptionId.WindowsDesktopDebuggers OptionId.WindowsDesktopSoftwareDevelopmentKit /layout _Standalone
if ERRORLEVEL 1 goto FAIL
mkdir Standlone
rename _Standalone Standalone
Expand All @@ -43,7 +43,7 @@ if not exist GRMWDK_EN_7600_1.ISO (
rename GRMWDK_EN_7600_1.IS_ GRMWDK_EN_7600_1.ISO
)

if not exist %OUTPUT% mkdir %OUTDIR%
if not exist %OUTPUT% ( mkdir %OUTPUT% )

python.exe toolchain2013.py --noclean --local=%~dp0 --targetdir=%OUTPUT%\vs2013
if ERRORLEVEL 1 goto FAIL
Expand Down
2 changes: 1 addition & 1 deletion ISOs/toolchain2013.py
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ def main():
# Set the working directory to 7z subdirectory. 7-zip doesn't find its
# codec dll very well, so this is the simplest way to make sure it runs
# correctly, as we don't otherwise care about working directory.
os.chdir(os.path.join(BASEDIR, '7z'))
os.chdir(os.path.join(BASEDIR, '..', '7z'))
if options.use_gs and options.sha1:
options.express = False
DoTreeMirror(target_dir, options.sha1)
Expand Down