Skip to content

Commit e794d3e

Browse files
committed
fix: assignment to const
1 parent 4fc25ee commit e794d3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ paths.forEach(function (env) {
8989
Object.assign(process.env, parsedVariables)
9090

9191
if (argv.p) {
92-
const value = process.env[argv.p]
92+
let value = process.env[argv.p]
9393
if (typeof value === 'string') {
94-
value = `\`${value}\``
94+
value = `${value}`
9595
}
9696
console.log(value != null ? value : '')
9797
process.exit()

0 commit comments

Comments
 (0)