diff options
| author | Fuwn <[email protected]> | 2021-05-06 13:27:46 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-06 13:27:46 -0700 |
| commit | f78dfbff13ae3bd8829a7ce908cd869cdf82243f (patch) | |
| tree | 6dedbd9b22653cc7878a7f02a952232c24f64539 | |
| parent | docs(docker): sha256 notes (diff) | |
| download | whirl-f78dfbff13ae3bd8829a7ce908cd869cdf82243f.tar.xz whirl-f78dfbff13ae3bd8829a7ce908cd869cdf82243f.zip | |
fix(make): docker-load uses shell script
| -rw-r--r-- | Makefile.toml | 6 |
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" |