Skip to content

Commit

Permalink
create export directory if it does not exist
Browse files Browse the repository at this point in the history
  • Loading branch information
markusheilig committed Jun 18, 2018
1 parent afbdc42 commit 57a4ecd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/project-iex/export-project.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const AdmZip = require('adm-zip');
const prettify = (json) => JSON.stringify(json, null, 2);

const zipProject = ({gdslProject, gdslInstances}) => {
const dir = 'export';
const dir = './export';
if (!fs.exists(dir)) {
fs.mkdirpSync(dir);
}
Expand Down

0 comments on commit 57a4ecd

Please sign in to comment.