seed-builder
Advanced tools
Comparing version 0.3.5 to 0.3.51
@@ -8,3 +8,7 @@ const os = require('os'); | ||
switch(platform){ | ||
case "linux": return path.join(dir, "bin", "seed-linux") | ||
case "linux": | ||
const exec = require("child_process").execSync; | ||
const linuxPath = path.join(dir, "bin", "seed-linux") | ||
exec(`chmod +x ${linuxPath}`) | ||
return linuxPath | ||
case "win32": return path.join(dir, "bin", "seed-windows.exe") | ||
@@ -11,0 +15,0 @@ } |
{ | ||
"name": "seed-builder", | ||
"version": "0.3.5", | ||
"version": "0.3.51", | ||
"description": "Code generator library", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
19942548
42
6