Skip to content

Commit

Permalink
Add hour and minute to bytecode repo directory names
Browse files Browse the repository at this point in the history
  • Loading branch information
ekpyron committed Feb 15, 2020
1 parent 41e83dd commit e8bb212
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ build_script:
- msbuild solidity.sln /p:Configuration=%CONFIGURATION% /m:%NUMBER_OF_PROCESSORS% /v:minimal
- cd %APPVEYOR_BUILD_FOLDER%
- scripts\release.bat %CONFIGURATION% 2017
- ps: $bytecodedir = git show -s --format="%cd-%H" --date=short
- ps: $bytecodedir = git show -s --format="%cd-%H" --date="format:%Y-%m-%d-%H-%M"

test_script:
- cd %APPVEYOR_BUILD_FOLDER%\build\test\%CONFIGURATION%
Expand Down
2 changes: 1 addition & 1 deletion scripts/bytecodecompare/storebytecode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ EOF
git config user.email "[email protected]"
git clean -f -d -x

DIRNAME=$(cd "$REPO_ROOT" && git show -s --format="%cd-%H" --date=short)
DIRNAME=$(cd "$REPO_ROOT" && git show -s --format="%cd-%H" --date="format:%Y-%m-%d-%H-%M")
mkdir -p "$DIRNAME"
REPORT="$DIRNAME/$ZIP_SUFFIX.txt"
cp ../report.txt "$REPORT"
Expand Down

0 comments on commit e8bb212

Please sign in to comment.