diff options
Diffstat (limited to '')
-rw-r--r-- | new-luxc/source/program.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/new-luxc/source/program.lux b/new-luxc/source/program.lux index 54f1437c7..e2cf047e9 100644 --- a/new-luxc/source/program.lux +++ b/new-luxc/source/program.lux @@ -150,8 +150,8 @@ (def: (target service) (-> /cli.Service /cli.Target) (case service - (^or (#/cli.Compilation [sources target module]) - (#/cli.Interpretation [sources target module]) + (^or (#/cli.Compilation [sources libraries target module]) + (#/cli.Interpretation [sources libraries target module]) (#/cli.Export [sources target])) target)) |