Skip to content
This repository was archived by the owner on Oct 19, 2023. It is now read-only.

Commit 190d0c7

Browse files
authored
Fix default workspace in gen-dockerfile builder (#284)
1 parent 0bb6b3d commit 190d0c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builder/gen-dockerfile/src/GenFilesCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ protected function initialize(InputInterface $input, OutputInterface $output)
7070
?: self::DEFAULT_BASE_IMAGE;
7171
$this->workspace = $input->getOption('workspace')
7272
?: getenv('PWD')
73-
?: self::DEFAULT_YAML_PATH;
73+
?: self::DEFAULT_WORKSPACE;
7474
$yamlPath = getenv('GAE_APPLICATION_YAML_PATH')
7575
?: self::DEFAULT_YAML_PATH;
7676
if (file_exists($this->workspace . '/' . $yamlPath)) {

0 commit comments

Comments
 (0)