Skip to content

Commit

Permalink
Fix misc bugs preventing build
Browse files Browse the repository at this point in the history
  • Loading branch information
Zarel committed May 1, 2020
1 parent 544417e commit 6d5ea45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var child_process = require('child_process');
var fs = require('fs');
var path = require('path');

process.chmod(__dirname);
process.chdir(__dirname);

function shell(cmd) {
child_process.execSync(cmd, {stdio: 'inherit'});
Expand Down
2 changes: 1 addition & 1 deletion test/sim/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ describe('Dex data', function () {
const entry = Movedex[moveid];
assert.equal(toID(entry.name), moveid, `Mismatched Move key "${moveid}" of "${entry.name}"`);
assert.equal(typeof entry.num, 'number', `Move ${entry.name} should have a number`);
assert.false(typeof entry.infiltrates, `Move ${entry.name} should not have an 'infiltrates' property (no real move has it)`);
assert.false(entry.infiltrates, `Move ${entry.name} should not have an 'infiltrates' property (no real move has it)`);
}
});

Expand Down

0 comments on commit 6d5ea45

Please sign in to comment.