remove temp testing comments

This commit is contained in:
Ian Wright
2024-01-09 15:40:01 +00:00
parent ed8422a2da
commit f793ce1e49

View File

@@ -88,8 +88,7 @@ if [ $OVERRIDE_RELEASE = 1 ]; then
# Check that the current HEAD is downstream from PREVIOUS_RELEASE_SHA
if ! git merge-base --is-ancestor "$PREVIOUS_RELEASE_SHA" "$CURRENT_SHA"; then
echo "Error: The current HEAD is not downstream from the previous release"
echo "Ignoring"
#exit 1
exit 1
fi
else
# Get the latest release of codeml-automodel
@@ -111,8 +110,7 @@ else
# Check that REVISION is downstream from PREVIOUS_RELEASE_SHA
if ! git merge-base --is-ancestor "$PREVIOUS_RELEASE_SHA" "$REVISION"; then
echo "Error: The codeql version $REVISION is not downstream of the query-pack version $PREVIOUS_RELEASE_SHA"
echo "Ignoring"
#exit 1
exit 1
fi
# Get the version of the codeql code specified by the codeml-automodel release
git checkout "$REVISION"