Move "commit signatures" step inside loop through suites

This step should be run for each suite. Since it was not inside a loop
over the list of suites, it was only running for the last suite in the
list.
This commit is contained in:
Charlie O'Keefe 2019-07-01 11:26:06 -06:00
parent e96aff9731
commit 46f9744068
1 changed files with 13 additions and 13 deletions

View File

@ -237,21 +237,21 @@ then
mv ${build_dir_path}/out/zcash-*.tar.gz ${build_dir_path}/out/src/zcash-*.tar.gz ${suite_binaries_dir_path}
popd # pushd ${gitian_builder_repo_path}
if [[ $commitFiles = true ]]
then
# Commit to gitian.sigs repo
echo ""
echo "Committing ${VERSION} Signatures"
echo ""
pushd ${gitian_sigs_repo_path}
git add ${VERSION}_${suite}/${SIGNER}
git commit -a -m "Add ${VERSION}_${suite} signatures for ${SIGNER}"
popd
fi
done
fi
if [[ $commitFiles = true ]]
then
# Commit to gitian.sigs repo
echo ""
echo "Committing ${VERSION} Signatures"
echo ""
pushd ${gitian_sigs_repo_path}
git add ${VERSION}_${suite}/${SIGNER}
git commit -a -m "Add ${VERSION}_${suite} signatures for ${SIGNER}"
popd
fi
fi
# Verify the build