diff options
author | Richard Mortier <mort@cantab.net> | 2019-07-12 09:45:54 +0100 |
---|---|---|
committer | Richard Mortier <mort@cantab.net> | 2019-07-12 09:53:19 +0100 |
commit | 078182f0255d4e892bfa6361d2f23044af20262d (patch) | |
tree | b71ef5694ba7e3611d083c5909efb8825b437e00 | |
parent | dd2960b32ac893458695130ab7250c6d0d2be897 (diff) | |
download | docker-abuild-078182f0255d4e892bfa6361d2f23044af20262d.tar.bz2 docker-abuild-078182f0255d4e892bfa6361d2f23044af20262d.tar.xz |
Makefile: whitespace
Signed-off-by: Richard Mortier <mort@cantab.net>
-rw-r--r-- | Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -23,12 +23,18 @@ dabuild: dabuild.in dabuild.in >| dabuild chmod +x dabuild -.drone.yml: .drone.jsonnet - docker run --rm -v '$(shell pwd):/pwd' -w /pwd drone/cli jsonnet --format --stream --source '$<' --target '$@.tmp' && test -s '$@.tmp' && install '$@.tmp' '$@' ; _rc=$$?; $(RM) '$@.tmp' ; exit $$_rc - .PHONY: all all: images dabuild +.drone.yml: .drone.jsonnet + docker run --rm -v '$(shell pwd):/pwd' -w /pwd \ + drone/cli jsonnet --format --stream --source '$<' --target '$@.tmp' \ + && test -s '$@.tmp' \ + && install '$@.tmp' '$@' \ + ; _rc=$$? \ + ; $(RM) '$@.tmp' \ + ; exit $$_rc + .PHONY: images images: $(patsubst %, build-%, $(RELEASES)) |