Skip to content
This repository has been archived by the owner on Mar 5, 2021. It is now read-only.

Commit

Permalink
Fix mix of \ and / being displayed on Windows in scripts/build.js
Browse files Browse the repository at this point in the history
  • Loading branch information
elisee committed Oct 8, 2015
1 parent 9d30049 commit dfc0f3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ var execSuffix = process.platform == "win32";
var errors = [];

async.eachSeries(buildPaths, function(buildPath, callback) {
log("Building /" + path.relative(rootPath, buildPath));
log("Building " + path.sep + path.relative(rootPath, buildPath));

var spawnOptions = { cwd: buildPath, env: process.env, stdio: "inherit" };

Expand Down

0 comments on commit dfc0f3e

Please sign in to comment.