mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-04 07:51:14 -05:00
Use bash as sh doesn't support the condition
This commit is contained in:
parent
6899a32655
commit
bf1feb5835
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user