From 2895e9c2743cd99d4d13460eb5a3600c90f93c01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Sat, 26 Oct 2024 17:35:39 +0000 Subject: [PATCH] Allow empty output dir --- app/http.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/http.php b/app/http.php index 0b36916..dd8b8cc 100644 --- a/app/http.php +++ b/app/http.php @@ -472,7 +472,7 @@ function cleanUp(Orchestration $orchestration, Table $activeRuntimes, array $net ->param('entrypoint', '', new Text(256, 0), 'Entrypoint of the code file.', true) ->param('source', '', new Text(0), 'Path to source files.', true) ->param('destination', '', new Text(0), 'Destination folder to store runtime files into.', true) - ->param('outputDirectory', '', new Text(0), 'Path inside build to use as output. If empty, entire build is used.', true) + ->param('outputDirectory', '', new Text(0, 0), 'Path inside build to use as output. If empty, entire build is used.', true) ->param('variables', [], new Assoc(), 'Environment variables passed into runtime.', true) ->param('runtimeEntrypoint', '', new Text(1024, 0), 'Commands to run when creating a container. Maximum of 100 commands are allowed, each 1024 characters long.', true) ->param('command', '', new Text(1024), 'Commands to run after container is created. Maximum of 100 commands are allowed, each 1024 characters long.', true)