1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-12 10:48:42 -04:00

Use bash as sh doesn't support the condition

This commit is contained in:
Jon Beniston
2023-07-31 20:34:45 +01:00
parent 6899a32655
commit bf1feb5835
+2 -2
View File
@@ -1,6 +1,6 @@
#!/bin/sh -e
#!/bin/bash -e
if [ "${TRAVIS_OS_NAME}" == "linux" ] || [ ${CI_LINUX} == true ]; then
if [ "${TRAVIS_OS_NAME}" == "linux" ] || [ "${CI_LINUX}" == true ]; then
debuild -i -us -uc -b
else
mkdir -p build; cd build