Skip to content

Commit

Permalink
fix(path): fix frames path
Browse files Browse the repository at this point in the history
  • Loading branch information
matteo-hertel committed Mar 30, 2018
1 parent 3fa74fb commit 0feae7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ async function letsParty() {
}

async function getFrames() {
return readDirAsync("./frames").then(processFrames);
return readDirAsync(`${__dirname}/frames`).then(processFrames);
}

async function processFrames(data) {
Expand Down

0 comments on commit 0feae7c

Please sign in to comment.