summaryrefslogtreecommitdiff
path: root/app/relay/modules/pix2pixhd.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/relay/modules/pix2pixhd.js')
-rw-r--r--app/relay/modules/pix2pixhd.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/app/relay/modules/pix2pixhd.js b/app/relay/modules/pix2pixhd.js
index c09eadc..31a3635 100644
--- a/app/relay/modules/pix2pixhd.js
+++ b/app/relay/modules/pix2pixhd.js
@@ -18,7 +18,7 @@ const fetch = {
// relay the new dataset name from youtube-dl or w/e
const lines = res.split('\n')
for (let line of lines) {
- console.log(line)
+ // console.log(line)
if ( line.match(/^created dataset: /) ) {
let tag = line.split(': ')[1].trim()
task.dataset = tag
@@ -193,7 +193,7 @@ const live = {
// relay the new dataset name from youtube-dl or w/e
const lines = res.split('\n')
for (let line of lines) {
- console.log(line)
+ // console.log(line)
if ( line.match(/^final result: /) ) {
let tag = line.split(': ')[1].trim()
task.dataset = tag
@@ -232,6 +232,7 @@ const render_recursive = {
'--tag', render_dir,
'--module', task.module,
'--endpoint', process.env.API_REMOTE + '/api/folder/' + task.opt.folder_id + '/upload/',
+ '--prefix', 'recur',
]
}
}