diff options
Diffstat (limited to 'stdlib/source/test/aedifex')
-rw-r--r-- | stdlib/source/test/aedifex/command/deploy.lux | 9 | ||||
-rw-r--r-- | stdlib/source/test/aedifex/profile.lux | 3 |
2 files changed, 8 insertions, 4 deletions
diff --git a/stdlib/source/test/aedifex/command/deploy.lux b/stdlib/source/test/aedifex/command/deploy.lux index 0aec02f72..7ce8710c9 100644 --- a/stdlib/source/test/aedifex/command/deploy.lux +++ b/stdlib/source/test/aedifex/command/deploy.lux @@ -31,8 +31,10 @@ ["[0]" export]]]] [world ["[0]" file] - ["[0]" program {"+" Program}]]]] + ["[0]" program {"+" Program}] + ["[0]" shell]]]] [// + ["$[0]" build] ["$[0]" install] ["$[0]" version] [// @@ -56,9 +58,10 @@ Artifact ///.Profile (Async (Try Text))) (do ///action.monad - [.let [console ($version.echo "")] + [.let [console ($version.echo "") + shell (shell.async ($build.bad_shell []))] _ ($install.make_sources! fs (the ///.#sources profile)) - _ (/.do! console local remote fs artifact profile)] + _ (/.do! program shell console local remote fs artifact profile)] (# console read_line []))) (def: .public test diff --git a/stdlib/source/test/aedifex/profile.lux b/stdlib/source/test/aedifex/profile.lux index aa2159929..e674942e0 100644 --- a/stdlib/source/test/aedifex/profile.lux +++ b/stdlib/source/test/aedifex/profile.lux @@ -98,8 +98,9 @@ (Random /.Info) ($_ random.and (random.maybe (random.ascii/alpha 1)) + (random.maybe (random.ascii/alpha 2)) (random.maybe ..scm) - (random.maybe (random.ascii/alpha 1)) + (random.maybe (random.ascii/alpha 3)) (..list_of ..license) (random.maybe ..organization) (..list_of ..developer) |