Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
golergka authored Sep 19, 2020
1 parent 217eafa commit 1da1dc1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ class FileProcessor {
};

private async processJob(connection: any, job: TransformJob) {
for (const fileName of job.files) {
for (let fileName of job.files) {
fileName = path.relative(process.cwd(), fileName);
console.log(`Processing ${fileName}`);
const ppath = path.parse(fileName);
let decsFileName;
Expand Down

0 comments on commit 1da1dc1

Please sign in to comment.