mirror of
https://github.com/OpenMaxIO/openmaxio-object-browser
synced 2026-07-01 07:41:18 -07:00
7 lines
117 B
Bash
7 lines
117 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
if yarn build | grep "Compiled with warnings"; then
|
||
|
|
echo "There are warnings in the code"
|
||
|
|
exit 1
|
||
|
|
fi
|