Skip to content

Commit

Permalink
yet another attempted fix...
Browse files Browse the repository at this point in the history
  • Loading branch information
capnramses committed Mar 14, 2024
1 parent 2ce5ea6 commit 24156e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build_all_linux_osx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ fi
## call make inside each folder
for i in "${demo_folders[@]}" ; do
if [ -d "$i" ]; then
if [ "$i" == "33_extension_check" ] && [ "$OSTYPE" == "darwin"* ]; then
if [ "$i" == "33_extension_check" ] && [[ "$OSTYPE" == "darwin"* ]]; then
continue
fi
if [ "$i" == "40_compute_shader" ] && [ "$OSTYPE" == "darwin"* ]; then
if [ "$i" == "40_compute_shader" ] && [[ "$OSTYPE" == "darwin"* ]]; then
continue
fi
echo "$i"
Expand Down

0 comments on commit 24156e6

Please sign in to comment.