Skip to content

Commit

Permalink
Update UniProt-Release-Diff/config.xml (#1263)
Browse files Browse the repository at this point in the history
Clean up the task description and use `-f` in the rm command to handle cases where no files exist to delete.
  • Loading branch information
rtaylorzfin authored Dec 16, 2024
1 parent 3cee642 commit cd29818
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions server_apps/jenkins/jobs/UniProt-Release-Diff/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<project>
<actions/>
<description>
This job loads the UniProt data into the database.
It will only load the data if there is a new release (as captured by UniProt-Release-Check_d).

This job compares 2 different uniprot releases and reports the differences that are relevant to us.
You can run the job with empty parameters for DB_RELEASE_1 and DB_RELEASE_2 and look at the output
to see what releases are available to compare.
</description>
<keepDependencies>false</keepDependencies>

Expand Down Expand Up @@ -48,7 +48,7 @@ echo "DB_RELEASE_2=$DB_RELEASE_2"
cd $SOURCEROOT
export KEEP_TEMP_FILES_IN=__DELETE__
export OUTPUT_FILE=$WORKSPACE/uniprot_diff_report.json
rm $WORKSPACE/uniprot_diff*
rm -f $WORKSPACE/uniprot_diff*
gradle uniprotReleaseDiffTask
]]>
</command>
Expand Down

0 comments on commit cd29818

Please sign in to comment.