Merge pull request #274 from sc-forks/honor-excluded-files

Honor excluded files
pull/275/head
c-g-e-w-e-k-e- 6 years ago committed by GitHub
commit e6180e324a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      lib/app.js

@ -389,6 +389,7 @@ class App {
*/
postProcessPure(env) {
shell.ls(`${env}/**/*.sol`).forEach(file => {
if (this.skipFiles.includes(file) || this.inSkippedFolder(file)) return;
const contractPath = this.platformNeutralPath(file);
const contract = fs.readFileSync(contractPath).toString();
const contractProcessed = preprocessor.run(contract);

Loading…
Cancel
Save