[CI] More bash fixes CI_FORCE_BUILD

pull/180/head
Jan Gromeš 2020-08-22 15:06:17 +02:00 zatwierdzone przez GitHub
rodzic 66ee13adea
commit a90a6e96ae
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -86,7 +86,7 @@ jobs:
run: |
for example in $(find $PWD/examples -name '*.ino' | sort); do
# check whether to skip this sketch
if [ ! -z "${{ steps.prep.outputs.skip-path }}" ] && [[ ${example} =~ ${{ steps.prep.outputs.skip-path }} ]]; then
if [ ! -z "${{ steps.prep.outputs.skip-path }}" ] && [[ '${example}' =~ '${{ steps.prep.outputs.skip-path }}' ]]; then
# skip sketch
echo -e "\n\033[1;33mSkipped ${example##*/} (matched with ${{ steps.prep.outputs.skip-path }})\033[0m";
else