Skip to content

Commit

Permalink
Rename variable
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed May 10, 2019
1 parent fe8e0ee commit 8e06684
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/exec.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ import { printEcho } from './echo.js'
// `cmd.exe` only use double quotes not single quotes.
export const exec = function(input, opts) {
validateInput({ input })
const optsB = parseOpts({ opts, defaultOpts })
const optsA = parseOpts({ opts, defaultOpts })

return execCommand(input, optsB)
return execCommand(input, optsA)
}

const defaultOpts = { verbose: isCi }
Expand Down

0 comments on commit 8e06684

Please sign in to comment.