Skip to content

Commit dcf7512

Browse files
committed
another bracket fix
1 parent fbe140a commit dcf7512

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build_all_linux_macos.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ fi
7070
## Call 'make' inside each folder, excluding on macOS demos requiring OpenGL >4.1.
7171
for i in "${demo_folders[@]}" ; do
7272
if [ -d "$i" ]; then
73-
if [ "$i" == "33_extension_check" ] && [ "$OSTYPE" == "darwin"* ]; then
73+
if [[ "$i" == "33_extension_check" ]] && [[ $OSTYPE == "darwin"* ]]; then
7474
continue
7575
fi
76-
if [ "$i" == "40_compute_shader" ] && [ "$OSTYPE" == "darwin"* ]; then
76+
if [[ "$i" == "40_compute_shader" ]] && [[ $OSTYPE == "darwin"* ]]; then
7777
continue
7878
fi
7979
echo "$i"

0 commit comments

Comments
 (0)