We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ff7a73 commit 4806b45Copy full SHA for 4806b45
src/cloud/install/installer.ts
@@ -61,6 +61,9 @@ class CloudInstaller {
61
}).on('data', function(data: Buffer) {
62
const output = data.toString();
63
log.debug('STDOUT: %1', output);
64
+ // Search for the URL anywhere in the line so we will
65
+ // continue to work in the face of minor changes
66
+ // to the install script.
67
if (output.indexOf(INVITATION_URL_PREFIX) === 0) {
68
F(output.substring(INVITATION_URL_PREFIX.length));
69
}
0 commit comments