diff options
author | Chocobozzz <me@florianbigard.com> | 2019-08-09 15:04:36 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-08-09 15:04:36 +0200 |
commit | e2600d8b261994abbbeb1ff921edaefd267fc122 (patch) | |
tree | fb19495cb4ba502324a2318c83cd4936b956fc1c /shared/extra-utils/miscs | |
parent | 5bb2eb5660c87700bc70fe82219c1a84e7c7b177 (diff) | |
download | PeerTube-e2600d8b261994abbbeb1ff921edaefd267fc122.tar.gz PeerTube-e2600d8b261994abbbeb1ff921edaefd267fc122.tar.zst PeerTube-e2600d8b261994abbbeb1ff921edaefd267fc122.zip |
Add avatar to prune script
Diffstat (limited to 'shared/extra-utils/miscs')
-rw-r--r-- | shared/extra-utils/miscs/miscs.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/shared/extra-utils/miscs/miscs.ts b/shared/extra-utils/miscs/miscs.ts index ae8a26c98..6b0f6d990 100644 --- a/shared/extra-utils/miscs/miscs.ts +++ b/shared/extra-utils/miscs/miscs.ts | |||
@@ -44,6 +44,10 @@ function root () { | |||
44 | return root | 44 | return root |
45 | } | 45 | } |
46 | 46 | ||
47 | function buildServerDirectory (internalServerNumber: number, directory: string) { | ||
48 | return join(root(), 'test' + internalServerNumber, directory) | ||
49 | } | ||
50 | |||
47 | async function testImage (url: string, imageName: string, imagePath: string, extension = '.jpg') { | 51 | async function testImage (url: string, imageName: string, imagePath: string, extension = '.jpg') { |
48 | const res = await request(url) | 52 | const res = await request(url) |
49 | .get(imagePath) | 53 | .get(imagePath) |
@@ -105,6 +109,7 @@ async function generateHighBitrateVideo () { | |||
105 | export { | 109 | export { |
106 | dateIsValid, | 110 | dateIsValid, |
107 | wait, | 111 | wait, |
112 | buildServerDirectory, | ||
108 | webtorrentAdd, | 113 | webtorrentAdd, |
109 | immutableAssign, | 114 | immutableAssign, |
110 | testImage, | 115 | testImage, |