Skip to content

Commit

Permalink
Fix wrong name of hw 5 in submit
Browse files Browse the repository at this point in the history
  • Loading branch information
Franverri authored and atralice committed Oct 21, 2020
1 parent 2e2485d commit 1e6d0ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion submit.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ if(args.length != 1 || !(["1","2","3","4","5","6","7","8","9"].includes(args[0])
}

var hwNumber = args[0];
const hwPaths = ["01-Git", "02-JS-I", "03-JS-II", "04-JS-III", "05-JSI-V", "06-JS-V", "07-JS-VI", "08-HTML", "09-CSS-Positioning"];
const hwPaths = ["01-Git", "02-JS-I", "03-JS-II", "04-JS-III", "05-JS-IV", "06-JS-V", "07-JS-VI", "08-HTML", "09-CSS-Positioning"];
const resultFile = __dirname + "/" + hwPaths[hwNumber - 1] + "/homework/tests/result.json";

try {
Expand Down

0 comments on commit 1e6d0ef

Please sign in to comment.