Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
gulpfile: fixed issue where test-definitely-typed task wouldn't work …
Browse files Browse the repository at this point in the history
…properly on Windows
  • Loading branch information
joshtynjala committed Apr 1, 2016
1 parent 7ad2635 commit 19b46bd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ var minimist = require("minimist");
var child_process = require("child_process");
var rimraf = require("rimraf");
var fs = require("fs");
var path = require("path");

gulp.task("clean-tests", function()
{
Expand Down Expand Up @@ -105,7 +106,7 @@ function run_dts2as(files, callback)
console.error("Apache FlexJS SDK not found: " + flexHome);
process.exit(1);
}
child_process.exec("bin/dts2as --flexHome " + flexHome + " --outSWC dts2astests_temp/test.swc " + files.join(" "),
child_process.exec("node " + path.join("bin", "cli.js") + " --flexHome " + flexHome + " --outSWC " + path.join("dts2astests_temp", "test.swc") + " " + files.join(" "),
{},
function(error)
{
Expand Down

0 comments on commit 19b46bd

Please sign in to comment.