Skip to content

Commit a29a129

Browse files
authored
test(melange): switch to sh (#7332)
Signed-off-by: Antonio Nuno Monteiro <[email protected]>
1 parent 20ad5e1 commit a29a129

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/blackbox-tests/test-cases/melange/emit-with-runtime-deps-dir-target.t

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Test simple interactions between melange.emit and copy_files
99
$ cat > dune <<EOF
1010
> (rule (target (dir some_dir))
1111
> (action
12-
> (progn (bash "mkdir %{target}")
13-
> (bash "echo hello from file inside dir target > %{target}/inside-dir-target.txt"))))
12+
> (progn (system "mkdir %{target}")
13+
> (system "echo hello from file inside dir target > %{target}/inside-dir-target.txt"))))
1414
> (melange.emit
1515
> (alias mel)
1616
> (target output)
@@ -31,9 +31,9 @@ Rules created for the assets in the output directory
3131
[1]
3232

3333
$ dune build @mel --display=short
34-
bash some_dir
34+
sh some_dir
3535
melc .output.mobjs/melange/melange__Main.{cmi,cmj,cmt}
36-
bash some_dir
36+
sh some_dir
3737
melc output/main.js
3838
Error: Is a directory
3939
-> required by _build/default/output/some_dir

0 commit comments

Comments
 (0)