diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-09-13 19:22:02 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-09-13 19:22:02 +0200 |
| commit | 3ca69b483816e714ed3eb71a5c9d95b4ff635ec2 (patch) | |
| tree | 36742939d1732b049302d149b7dab1c771c5bb86 /app/relay/modules/pix2pixhd.js | |
| parent | a456f4aeade66f93768583c5838591684c914092 (diff) | |
merge
Diffstat (limited to 'app/relay/modules/pix2pixhd.js')
| -rw-r--r-- | app/relay/modules/pix2pixhd.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/relay/modules/pix2pixhd.js b/app/relay/modules/pix2pixhd.js index 0391480..3bdf705 100644 --- a/app/relay/modules/pix2pixhd.js +++ b/app/relay/modules/pix2pixhd.js @@ -207,11 +207,14 @@ const render_recursive = { script: 'dir-to-movie.pl', params: (task) => { if (!!task.opt.mov) { + console.log('will not render mov') return 'CANCEL' } + const tag = task.checkpoint + '/' + task.dataset + '_' + pad(task.augment_take, 5) + '_' + pad(task.augment_make, 5) + console.log('rendering recursve path:', tag) return [ '--path', 'recursive', - '--tag', task.checkpoint + '/' + task.dataset + '_' + pad(task.augment_take, 5) + '_' + pad(task.augment_make, 5), + '--tag', tag, '--module', task.module, '--endpoint', process.env.API_REMOTE + '/api/folder/' + task.opt.folder_id + '/upload/', ] |
