-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Site install process fixes during bootstrap #659
Site install process fixes during bootstrap #659
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks
@@ -16,6 +16,7 @@ env: | |||
|
|||
before_install: | |||
- export PATH="$HOME/.config/composer/vendor/bin:$PATH" | |||
- tmpdaemon=$(mktemp) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is it doing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It just uses a temporary file to do manipulations on /etc/docker/daemon.json
. We can't redirect to the currently manipulated file, as the shell makes it empty as a very first step.
@@ -562,7 +562,9 @@ public function deployPantheonInstallEnv(string $env = 'qa', string $pantheon_na | |||
} | |||
|
|||
$task | |||
->exec("terminus connection:set $pantheon_terminus_environment sftp") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Worth a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added.
#658