Skip to content

Commit

Permalink
fix: mac osx detection in glyphmap script
Browse files Browse the repository at this point in the history
  • Loading branch information
johnf committed Nov 28, 2024
1 parent 206d242 commit 2967ce9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/fix-glyphmaps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

set -e

if [ "$OSTYPE" == "osx" ]; then
if [ "$(uname)" == "Darwin" ]; then
ISED='sed -i ""'
else # $OSTYPE == linux64
ISED='sed -i'
Expand Down

0 comments on commit 2967ce9

Please sign in to comment.