aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tools/import-videos.ts
diff options
context:
space:
mode:
authorOkhin <okhin@okhin.fr>2018-03-24 20:11:37 +0100
committerRigel Kent <par@rigelk.eu>2018-03-24 21:17:29 +0100
commitf5b611f9ee8b6cb6236cf01c4963eb01bdadb7c9 (patch)
treea824161effaf2c33fdf75d8f32fef2b74f9efca0 /server/tools/import-videos.ts
parentb32b78271856ee12fdce5fadc7ed0fe81ecaeff5 (diff)
downloadPeerTube-f5b611f9ee8b6cb6236cf01c4963eb01bdadb7c9.tar.gz
PeerTube-f5b611f9ee8b6cb6236cf01c4963eb01bdadb7c9.tar.zst
PeerTube-f5b611f9ee8b6cb6236cf01c4963eb01bdadb7c9.zip
Replacing the err being thrown by a gracefull exit.process(1)
Diffstat (limited to 'server/tools/import-videos.ts')
-rw-r--r--server/tools/import-videos.ts8
1 files changed, 6 insertions, 2 deletions
diff --git a/server/tools/import-videos.ts b/server/tools/import-videos.ts
index 433cee652..72223a01a 100644
--- a/server/tools/import-videos.ts
+++ b/server/tools/import-videos.ts
@@ -53,7 +53,10 @@ async function run () {
53 53
54 const options = [ '-j', '--flat-playlist', '--playlist-reverse' ] 54 const options = [ '-j', '--flat-playlist', '--playlist-reverse' ]
55 youtubeDL.getInfo(program['targetUrl'], options, processOptions, async (err, info) => { 55 youtubeDL.getInfo(program['targetUrl'], options, processOptions, async (err, info) => {
56 if (err) throw err 56 if (err) {
57 console.log(err.message);
58 process.exit(1);
59 }
57 60
58 let infoArray: any[] 61 let infoArray: any[]
59 62
@@ -157,7 +160,8 @@ async function uploadVideoOnPeerTube (videoInfo: any, videoPath: string, languag
157 160
158 await uploadVideo(program['url'], accessToken, videoAttributes) 161 await uploadVideo(program['url'], accessToken, videoAttributes)
159 } else { 162 } else {
160 throw err 163 console.log(err.message);
164 process.exit(1);
161 } 165 }
162 } 166 }
163 167