Skip to content

Commit

Permalink
fix variable expansion in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
andrii-suse committed Jun 11, 2024
1 parent 130470e commit f53f24f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ install:
done

test:
for f in product/*/t/*.sh ; do bash -x $f && continue; echo FAIL: $f; break; done
for f in product/*/t/*.sh ; do bash -x $$f && continue; echo FAIL: $$f; break; done

test_leap:
for f in product/ap/*/*.sh; do echo starting $f; ENVIRON_TEST_IMAGE=registry.opensuse.org/opensuse/leap $f && continue; echo FAIL $f; break; done
for f in product/ap/*/*.sh; do echo starting $$f; ENVIRON_TEST_IMAGE=registry.opensuse.org/opensuse/leap $$f && continue; echo FAIL $$f; break; done

test_tw:
for f in product/ap/*/*.sh; do echo starting $f; ENVIRON_TEST_IMAGE=registry.opensuse.org/opensuse/tumbleweed $f && continue; echo FAIL $f; break; done
for f in product/ap/*/*.sh; do echo starting $$f; ENVIRON_TEST_IMAGE=registry.opensuse.org/opensuse/tumbleweed $$f && continue; echo FAIL $$f; break; done

0 comments on commit f53f24f

Please sign in to comment.