Use == instead of = for comparison

pull/1754/head
Jon Beniston 2023-07-31 14:19:00 +01:00
rodzic e7b0921c50
commit e9c258f8c2
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -1,6 +1,6 @@
#!/bin/sh -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