Skip to content

Commit 50dc926

Browse files
committed
fix
Signed-off-by: Dmitry Lopatin <dmitry.lopatin@flant.com>
1 parent 43ab449 commit 50dc926

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

images/virt-artifact/werf.inc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ shell:
8888
go mod download
8989
go work vendor
9090
91-
for p in patches/*.patch ; do
91+
for p in $(test -d patches && ls -1 patches/*.patch 2>/dev/null) ; do
9292
echo -n "Apply ${p} ... "
9393
git apply --ignore-space-change --ignore-whitespace ${p} && echo OK || (echo FAIL ; exit 1)
9494
done

0 commit comments

Comments
 (0)