Skip to content

Commit

Permalink
fix(linting): no-unused-vars
Browse files Browse the repository at this point in the history
  • Loading branch information
lukekarrys committed May 4, 2024
1 parent c944f6b commit dbe91b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const writeShim = (from, to) =>
const prog = shebang[2]
const args = shebang[3] || ''
return writeShim_(from, to, prog, args, vars)
}, er => writeShim_(from, to))
}, () => writeShim_(from, to))

const writeShim_ = (from, to, prog, args, variables) => {
let shTarget = relative(dirname(to), from)
Expand Down

0 comments on commit dbe91b4

Please sign in to comment.