Skip to content

Commit

Permalink
Fix CI script syntax
Browse files Browse the repository at this point in the history
Previous change made for Windows introduced a syntax error which
this fixes.

Signed-off-by: Arnaud J Le Hors <[email protected]>
  • Loading branch information
lehors authored and denyeart committed Nov 17, 2021
1 parent 44faa13 commit c463b32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/scripts/create_binary_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ make "release/${TARGET}"
mkdir "release/${TARGET}/config"
mv sampleconfig/*yaml "release/${TARGET}/config"
cd "release/${TARGET}"
if [ "$TARGET" == "windows-amd64" ]
if [ "$TARGET" == "windows-amd64" ]; then
for FILE in bin/*; do mv $FILE $FILE.exe; done
fi
tar -czvf "hyperledger-fabric-${TARGET}-${RELEASE}.tar.gz" bin config

0 comments on commit c463b32

Please sign in to comment.