32 lines
843 B
Perl
32 lines
843 B
Perl
$ dune clean
|
|
$ dune build @just-in-src
|
|
running in .
|
|
$ dune clean
|
|
$ dune build @everywhere
|
|
running in .
|
|
running in bar
|
|
running in baz
|
|
$ dune clean
|
|
$ dune build @x
|
|
running in .
|
|
running in bar
|
|
running in baz
|
|
$ dune build @plop
|
|
Error: Alias "plop" specified on the command line is empty.
|
|
It is not defined in . or any of its descendants.
|
|
[1]
|
|
$ dune build @truc/x
|
|
Error: Don't know about directory truc specified on the command line!
|
|
[1]
|
|
|
|
Test error messages for unknown aliases
|
|
|
|
$ dune build @unknown-alias
|
|
Error: Alias "unknown-alias" specified on the command line is empty.
|
|
It is not defined in . or any of its descendants.
|
|
[1]
|
|
|
|
$ dune build @alias-depending-on-unknown-alias
|
|
Error: No rule found for alias unknown-alias
|
|
-> required by alias alias-depending-on-unknown-alias in dune:9
|
|
[1]
|