diff --git a/solcjs b/solcjs index 890ce006..d217d5e3 100755 --- a/solcjs +++ b/solcjs @@ -3,7 +3,7 @@ // hold on to any exception handlers that existed prior to this script running, we'll be adding them back at the end var originalUncaughtExceptionListeners = process.listeners("uncaughtException"); -var fs = require('fs-extra'); +var fs = require('fs'); var os = require('os'); var path = require('path'); var solc = require('./index.js'); @@ -223,7 +223,7 @@ if (!output) { } } -fs.ensureDirSync (destination); +fs.mkdirSync(destination, { mode: 0o777, recursive: true }); function writeFile (file, content) { file = path.join(destination, file);