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

Commit

Permalink
Fix default workspace in gen-dockerfile builder (#284)
Browse files Browse the repository at this point in the history
  • Loading branch information
chingor13 authored May 12, 2017
1 parent 0bb6b3d commit 190d0c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder/gen-dockerfile/src/GenFilesCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ protected function initialize(InputInterface $input, OutputInterface $output)
?: self::DEFAULT_BASE_IMAGE;
$this->workspace = $input->getOption('workspace')
?: getenv('PWD')
?: self::DEFAULT_YAML_PATH;
?: self::DEFAULT_WORKSPACE;
$yamlPath = getenv('GAE_APPLICATION_YAML_PATH')
?: self::DEFAULT_YAML_PATH;
if (file_exists($this->workspace . '/' . $yamlPath)) {
Expand Down

0 comments on commit 190d0c7

Please sign in to comment.