Skip to content

Commit

Permalink
Fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
socarlosb committed May 8, 2020
1 parent fb66629 commit 5e11df7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ exports.handler = async (args = {}) => {
const tarStream = tar.pack(workdir, {
// ignore files from ignore list
ignore: name => {
const relativePath = path.relative(workdir, name)
const relativePath = path.relative(workdir, name);
const result = multimatch([relativePath], ignores).length !== 0;
return result;
},
Expand Down

0 comments on commit 5e11df7

Please sign in to comment.