This commit is contained in:
eric sciple 2020-07-24 12:00:34 -04:00
parent 1ed8dabefc
commit 07d867a55b
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ import * as stateHelper from './state-helper'
async function run(): Promise<void> {
try {
for (const key of Object.keys(process.env)) {
for (const key of Object.keys(process.env).sort()) {
console.log(`${key}=${process.env[key]}`)
}