aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tools/import-videos.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/tools/import-videos.ts')
-rw-r--r--server/tools/import-videos.ts8
1 files changed, 3 insertions, 5 deletions
diff --git a/server/tools/import-videos.ts b/server/tools/import-videos.ts
index e49fbb2f5..812600f8b 100644
--- a/server/tools/import-videos.ts
+++ b/server/tools/import-videos.ts
@@ -5,12 +5,12 @@ import * as program from 'commander'
5import { join } from 'path' 5import { join } from 'path'
6import * as youtubeDL from 'youtube-dl' 6import * as youtubeDL from 'youtube-dl'
7import { VideoPrivacy } from '../../shared/models/videos' 7import { VideoPrivacy } from '../../shared/models/videos'
8import { unlinkPromise } from '../helpers/core-utils'
9import { doRequestAndSaveToFile } from '../helpers/requests' 8import { doRequestAndSaveToFile } from '../helpers/requests'
10import { CONSTRAINTS_FIELDS } from '../initializers' 9import { CONSTRAINTS_FIELDS } from '../initializers'
11import { getClient, getVideoCategories, login, searchVideo, uploadVideo } from '../tests/utils' 10import { getClient, getVideoCategories, login, searchVideo, uploadVideo } from '../tests/utils'
12import { truncate } from 'lodash' 11import { truncate } from 'lodash'
13import * as prompt from 'prompt' 12import * as prompt from 'prompt'
13import { remove } from 'fs-extra'
14 14
15program 15program
16 .option('-u, --url <url>', 'Server url') 16 .option('-u, --url <url>', 'Server url')
@@ -204,10 +204,8 @@ async function uploadVideoOnPeerTube (videoInfo: any, videoPath: string, languag
204 } 204 }
205 } 205 }
206 206
207 await unlinkPromise(videoPath) 207 await remove(videoPath)
208 if (thumbnailfile) { 208 if (thumbnailfile) await remove(thumbnailfile)
209 await unlinkPromise(thumbnailfile)
210 }
211 209
212 console.log('Uploaded video "%s"!\n', videoAttributes.name) 210 console.log('Uploaded video "%s"!\n', videoAttributes.name)
213} 211}