Skip to content

Commit

Permalink
Merge pull request #106 from rlcee/fix_231002
Browse files Browse the repository at this point in the history
fix parse bug
  • Loading branch information
rlcee authored Oct 2, 2023
2 parents 2f3f8e8 + a6a97a6 commit 01db648
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/jenkinsMusingBuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ if [ $NMATCHES -gt 1 ]; then
fi

DEPS=$( cat MuseConfig/musing/$MUSING | sed 's/#.*$//' |
awk -v t=$VERSION '{if($1==t) { for(i=2;i<=NR; i++) print $i " "} }' )
awk -v t=$VERSION '{if($1==t) { for(i=2;i<=NF; i++) printf "%s ", $i } }' )


echo "[$(date)] found dependecies $DEPS"
Expand Down

0 comments on commit 01db648

Please sign in to comment.