mirror of
https://github.com/flynx/ImageGrid.git
synced 2025-10-30 02:40:08 +00:00
fixed paths, now working standalone...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
813226e6f3
commit
81099daee8
@ -97,7 +97,7 @@ zip: $(APP_ZIP)
|
|||||||
|
|
||||||
node-deps:
|
node-deps:
|
||||||
npm install fs.extra
|
npm install fs.extra
|
||||||
npm install exif
|
# npm install exif
|
||||||
|
|
||||||
dev: $(CSS_FILES)
|
dev: $(CSS_FILES)
|
||||||
unzip -uj $(wildcard targets/node-webkit/node-webkit-*-win-ia32.zip) -d .
|
unzip -uj $(wildcard targets/node-webkit/node-webkit-*-win-ia32.zip) -d .
|
||||||
|
|||||||
@ -51,7 +51,7 @@ if(window.CEF_dumpJSON != null){
|
|||||||
.normalize(p.replace(/file:\/\/\//, ''))
|
.normalize(p.replace(/file:\/\/\//, ''))
|
||||||
}
|
}
|
||||||
window.execPathPush = function(p){
|
window.execPathPush = function(p){
|
||||||
process.env.PATH += ';' + path.normalize(process.cwd() + '/' + p)
|
process.env.PATH += ';' + path.normalize(path.dirname(process.execPath) + '/' + p)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -1203,7 +1203,9 @@ function getWorkerQueue(name, no_auto_start){
|
|||||||
// kill all worker queues...
|
// kill all worker queues...
|
||||||
function killAllWorkers(){
|
function killAllWorkers(){
|
||||||
for(var k in WORKERS){
|
for(var k in WORKERS){
|
||||||
console.log('Worker: Stopping:', k)
|
if(WORKERS[k].isWorking()){
|
||||||
|
console.log('Worker: Stopped:', k)
|
||||||
|
}
|
||||||
WORKERS[k].kill()
|
WORKERS[k].kill()
|
||||||
}
|
}
|
||||||
WORKERS = {}
|
WORKERS = {}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user