|
|
|
@ -38,7 +38,6 @@ config.killZone = { |
|
|
|
right: 25 |
|
|
|
} |
|
|
|
|
|
|
|
config.output = __dirname |
|
|
|
config.output = path.join(config.output, 'bobinoscope') |
|
|
|
|
|
|
|
try { |
|
|
|
@ -46,6 +45,14 @@ try { |
|
|
|
console.log('[!] Bobinogrammes will be available in: ' + config.output) |
|
|
|
} catch (e) { |
|
|
|
console.log('[!] Failed to create folders: ' + config.output) |
|
|
|
try { |
|
|
|
config.output = process.cwd() |
|
|
|
config.output = path.join(config.output, 'bobinoscope') |
|
|
|
console.log('[!] Bobinogrammes will be available in: ' + config.output) |
|
|
|
} catch (e) { |
|
|
|
console.log('[!] Failed to create folders: ' + config.output) |
|
|
|
process.exit(1) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// Init PATH
|
|
|
|
|