Skip to content

Commit 459c19d

Browse files
committed
chore: fix makefile
1 parent 1285c11 commit 459c19d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -263,12 +263,12 @@ argoexec-nonroot-image:
263263
-t $$image_name \
264264
--target $* \
265265
--load \
266-
.
267-
[ ! -e $* ] || mv $* dist/
268-
docker run --rm -t $$image_name version
266+
.; \
267+
[ ! -e $* ] || mv $* dist/; \
268+
docker run --rm -t $$image_name version; \
269269
if [ $(K3D) = true ]; then \
270270
k3d image import -c $(K3D_CLUSTER_NAME) $$image_name; \
271-
fi
271+
fi; \
272272
if [ $(DOCKER_PUSH) = true ] && [ $(IMAGE_NAMESPACE) != argoproj ] ; then \
273273
docker push $$image_name; \
274274
fi

0 commit comments

Comments
 (0)