Skip to content

Commit

Permalink
Test explicitly mawk 1.3.3 #120
Browse files Browse the repository at this point in the history
  • Loading branch information
xonixx committed Jan 25, 2023
1 parent 0ec76cb commit 303182e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Makesurefile
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,14 @@ in_begin && $1 ~ /^split/ { next }
@reached_if [[ -f soft/mawk133 ]]
@depends_on soft_folder_created
@use_lib mawk
install_mawk 1.3.3 'mawk-1.3.3-20080909.tgz'
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
install_mawk 1.3.3 'mawk-1.3.3-20080909.tgz' # this one doesn't compile on macos
elif [[ "$OSTYPE" == "darwin"* ]]; then
install_mawk 1.3.3 'mawk-1.3.3-20090920.tgz'
else
>&2 echo "Unknown OS"
exit 1
fi

@goal installed_mawk134 @private
@reached_if [[ -f soft/mawk134 ]]
Expand Down

0 comments on commit 303182e

Please sign in to comment.