javascripting
Advanced tools
Comparing version 1.10.2 to 1.10.3
{ | ||
"name": "javascripting", | ||
"description": "Learn JavaScript by adventuring around in the terminal.", | ||
"version": "1.10.2", | ||
"version": "1.10.3", | ||
"repository": { | ||
@@ -6,0 +6,0 @@ "url": "git://github.com/sethvincent/javascripting.git" |
@@ -7,3 +7,3 @@ var fs = require('fs'); | ||
module.exports = function (solution, cb) { | ||
var child = exec('node ' + solution, function (error, stdout, stderr) { | ||
var child = exec('node "' + solution + '"', function (error, stdout, stderr) { | ||
if (error) return cb(error); | ||
@@ -10,0 +10,0 @@ else cb(null, stdout); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
899713