Skip to content

Commit

Permalink
fix printing env
Browse files Browse the repository at this point in the history
  • Loading branch information
lobsterkatie committed Dec 1, 2021
1 parent 377e574 commit 374d3e3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/ember/config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
const getChannelURL = require('ember-source-channel-url');
const { embroiderSafe } = require('@embroider/test-setup');

console.log(process.env.sort());
Object.keys(process.env)
.sort()
.map(key => console.log(key, process.env[key]));

module.exports = async function() {
return {
Expand Down

0 comments on commit 374d3e3

Please sign in to comment.