1
0
Fork 0
mirror of https://github.com/veggiemonk/awesome-docker.git synced 2025-04-19 15:38:04 +02:00

Display env var nicely

This commit is contained in:
Julien Bisconti 2020-04-13 17:54:25 +02:00
parent fd49c3a59d
commit 0b371c8aca
No known key found for this signature in database
GPG key ID: 62772C6698F736CB

View file

@ -6,7 +6,7 @@ function envvar_undefined(variable_name) {
throw new Error(`${variable_name} must be defined`);
}
console.log({
DEBUG: process.env.DEBUG,
DEBUG: process.env.DEBUG || false,
});
const README = 'README.md';