Skip to content

Commit 4806b45

Browse files
committed
add comment explaining parsing of invitation URL
1 parent 3ff7a73 commit 4806b45

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/cloud/install/installer.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ class CloudInstaller {
6161
}).on('data', function(data: Buffer) {
6262
const output = data.toString();
6363
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.
6467
if (output.indexOf(INVITATION_URL_PREFIX) === 0) {
6568
F(output.substring(INVITATION_URL_PREFIX.length));
6669
}

0 commit comments

Comments
 (0)