Skip to content

Commit

Permalink
fix: add trailing newline to shell output
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshallOfSound committed Jan 18, 2023
1 parent ebc651d commit 4571883
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ export const configureAndListen = async (
}
}
return Object.keys(secretsToSend)
.map((secretKey) => `export ${secretKey}=${JSON.stringify(secretsToSend[secretKey])}`)
.join('\n');
.map((secretKey) => `export ${secretKey}=${JSON.stringify(secretsToSend[secretKey])}\n`)
.join('');
}

return secretsToSend;
Expand Down

0 comments on commit 4571883

Please sign in to comment.