Skip to content

Commit 676e388

Browse files
author
Chuck Dumont
authored
Merge pull request #207 from PG-Devs/master
Thanks for the fixes!
2 parents f6fc485 + 8f67fdf commit 676e388

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/DojoLoaderPlugin.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ module.exports = class DojoLoaderPlugin {
114114
}
115115
}
116116
child_process.execFile(
117-
"node", // the executable to run
117+
process.execPath, // the executable to run
118118
[ // The arguments
119119
path.resolve(__dirname, "../buildDojo", "buildRunner.js"),
120120
"load=build",

runtime/DojoAMDMainTemplate.runtime.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module.exports = {
2020
main: function() {
2121
function mix(dest, src) { // eslint-disable-line no-unused-vars
2222
for(var n in src) dest[n] = src[n];
23-
return src;
23+
return dest;
2424
}
2525

2626
function toUrl(name, referenceModule) {

0 commit comments

Comments
 (0)