Skip to content

Commit

Permalink
Simplify defaults for macOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
christianhujer committed May 2, 2024
1 parent 1dbe16b commit dacb95c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions bin/aceunit
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ name=fixtures

PROG=$0

if [[ "$(uname)" == "Darwin" ]] ; then
strip=_
fi

if [ -n "$ZSH_VERSION" ]; then
setopt shwordsplit

Expand Down Expand Up @@ -230,9 +234,6 @@ while getopts "b:hn:p:s:t:v" o; do
*) usage; exit 1 ;;
esac
done
if [[ -z "$strip" ]] && [[ "$(uname)" == Darwin ]] ; then
strip=_
fi
shift $((OPTIND - 1))
fixtures=$@
if [[ -z "$binary" ]] ; then
Expand Down

0 comments on commit dacb95c

Please sign in to comment.