aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-06 13:27:46 +0000
committerFuwn <[email protected]>2021-05-06 13:27:46 +0000
commit347176a958e1dcbea62288bb9b8a869e5b22ca0c (patch)
treeb9db714350eb8e7907aaf439768f54cbeb8c020c
parentdocs(docker): sha256 notes (diff)
downloadwhirl-347176a958e1dcbea62288bb9b8a869e5b22ca0c.tar.xz
whirl-347176a958e1dcbea62288bb9b8a869e5b22ca0c.zip
fix(make): docker-load uses shell script
-rw-r--r--Makefile.toml6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.toml b/Makefile.toml
index 2e7c81f..7579f67 100644
--- a/Makefile.toml
+++ b/Makefile.toml
@@ -66,8 +66,10 @@ command = "nix-build"
args = ["docker.nix"]
[tasks.docker-load]
-command = "docker"
-args = ["load", "<", "result"]
+script_runner = "@shell"
+script = '''
+docker load < result
+'''
[tasks.docker-run]
command = "docker"