From a87b22c1229f9f5bec8dafd43d42365c7459a7c7 Mon Sep 17 00:00:00 2001 From: chriseth Date: Fri, 9 Jun 2017 17:17:41 +0200 Subject: Change windows CI to use the same bytecode directory as linux. --- scripts/bytecodecompare/storebytecode.bat | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts/bytecodecompare') diff --git a/scripts/bytecodecompare/storebytecode.bat b/scripts/bytecodecompare/storebytecode.bat index 969a42a4..aa829d20 100644 --- a/scripts/bytecodecompare/storebytecode.bat +++ b/scripts/bytecodecompare/storebytecode.bat @@ -20,7 +20,7 @@ REM Copyright (c) 2017 solidity contributors. REM --------------------------------------------------------------------------- set CONFIGURATION=%1 -set COMMIT=%2 +set DIRECTORY=%2 mkdir bytecode cd bytecode @@ -33,8 +33,8 @@ git config user.name "travis" git config user.email "chris@ethereum.org" git clean -f -d -x -mkdir %COMMIT% -set REPORT=%COMMIT%/windows.txt +if not exist %DIRECTORY% mkdir %DIRECTORY% +set REPORT=%DIRECTORY%/windows.txt cp ../report.txt %REPORT% git add %REPORT% git commit -a -m "Added report." -- cgit