diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2021-01-19 17:52:21 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2021-01-19 17:52:21 +0100 |
commit | 03f8a08fe2dde9db9fb656dbea2e5494b67236ad (patch) | |
tree | 26e48a9d535c5230e07f4ad4c6a215ef46963bda /script.it/dune | |
parent | 228eceeed40b0f86e75a394fe8d65e6e93ca2370 (diff) |
Regression in chanes value
Diffstat (limited to 'script.it/dune')
-rwxr-xr-x | script.it/dune | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/script.it/dune b/script.it/dune index bb5ca5f..db5ba3f 100755 --- a/script.it/dune +++ b/script.it/dune @@ -28,7 +28,7 @@ (rule (targets script.js) (deps script.bc.js) - (action (run cp %{deps} %{targets}))) + (action (copy %{deps} %{targets}))) (executable (name worker) @@ -48,4 +48,4 @@ (rule (targets worker.js) (deps worker.bc.js) - (action (run cp %{deps} %{targets}))) + (action (copy %{deps} %{targets}))) |