Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
Whoops. Last commit didn't ensure correct directory path when reading…
Browse files Browse the repository at this point in the history
… from contracts.json
  • Loading branch information
Tim Coulter authored and Tim Coulter committed Sep 25, 2015
1 parent ea18817 commit f3b7d6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/config.es6
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ var Config = {
for (var name in current_contracts) {
var contract = current_contracts[name];
// Don't import any deleted contracts.
if (!fs.existsSync(contract.source)) {
if (!fs.existsSync(path.join(working_dir, contract.source))) {
continue;
}
config.contracts.classes[name] = contract;
Expand Down

0 comments on commit f3b7d6e

Please sign in to comment.