Compare commits

...

2 Commits

Author SHA1 Message Date
Lance Vick cf04bfc6e6
don't gzip unless we have a valid tar file 2024-02-05 01:45:45 -08:00
Lance Vick 77452b3995
Dockerfile -> Containerfile 2024-02-05 01:45:20 -08:00
40 changed files with 2 additions and 0 deletions

View File

@ -43,7 +43,9 @@ define build
--target $(TARGET) \
$(EXTRA_ARGS) \
$(NOCACHE_FLAG) \
-f src/$(CATEGORY)/$(NAME)/Containerfile \
src/$(CATEGORY)/$(NAME) \
&& tar -tf $(basename $@).tar \
&& gzip < $(basename $@).tar > $@ \
&& rm $(basename $@).tar \
&& gunzip -c $@ | docker load; \