We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbe140a commit dcf7512Copy full SHA for dcf7512
build_all_linux_macos.sh
@@ -70,10 +70,10 @@ fi
70
## Call 'make' inside each folder, excluding on macOS demos requiring OpenGL >4.1.
71
for i in "${demo_folders[@]}" ; do
72
if [ -d "$i" ]; then
73
- if [ "$i" == "33_extension_check" ] && [ "$OSTYPE" == "darwin"* ]; then
+ if [[ "$i" == "33_extension_check" ]] && [[ $OSTYPE == "darwin"* ]]; then
74
continue
75
fi
76
- if [ "$i" == "40_compute_shader" ] && [ "$OSTYPE" == "darwin"* ]; then
+ if [[ "$i" == "40_compute_shader" ]] && [[ $OSTYPE == "darwin"* ]]; then
77
78
79
echo "$i"
0 commit comments