Skip to content

Commit

Permalink
Merge pull request #41 from brianhlin/osg23-desperation
Browse files Browse the repository at this point in the history
Let mash fail for quicker OSG 23 turnaround
  • Loading branch information
matyasselmeci authored Sep 30, 2023
2 parents 56a6d46 + 75f4c37 commit e5c151a
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions bin/update_repo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,13 @@ repo_working_srpm_path="$working_path/$reponame/source/SRPMS"

mkdir -p "$release_path" "$working_path" "$previous_path"
mash "$reponame" -o "$working_path" -p "$release_path"
if [ "$?" -ne "0" ]; then
echo "mash failed - please see error log" >&2
exit 1
fi

# FIXME: temporarily let mash fail so that we can see all the warnings
# and fix things live
# if [ "$?" -ne "0" ]; then
# echo "mash failed - please see error log" >&2
# exit 1
# fi

# Copy relevant htcondor rpms to the working directory, if any
if pull_condor_rpms.sh $TAG $repo_working_path '' ; then
Expand Down

0 comments on commit e5c151a

Please sign in to comment.