Skip to content
This repository has been archived by the owner on Jul 21, 2022. It is now read-only.

Commit

Permalink
Merge branch 'master' of https://github.com/Zibbp/Ceres
Browse files Browse the repository at this point in the history
pull
  • Loading branch information
Zibbp committed Feb 5, 2022
2 parents 33a1970 + 8a96a40 commit 3952654
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN apk update \

WORKDIR /tmp

COPY ./.github/Inter.otf ./
COPY ./Inter.otf ./

RUN mkdir -p /usr/share/fonts/opentype/

Expand Down
0 .github/Inter.otf → Inter.otf
100644 → 100755
File renamed without changes.
Empty file modified LICENSE
100644 → 100755
Empty file.
Empty file modified docker-compose.yml
100644 → 100755
Empty file.
Empty file modified nginx.conf
100644 → 100755
Empty file.
4 changes: 4 additions & 0 deletions src/exec/exec.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ export class ExecService {
this.logger.verbose(`Video download ${vodInfo['id']} stdout: ${data}`);
videoDownloadLog.write(data);
});
downloadVideoChild.stderr.on('data', (data) => {
this.logger.verbose(`Video download ${vodInfo['id']} stderr: ${data}`);
videoDownloadLog.write(data);
});

downloadVideoChild.on('error', (error) => {
this.logger.error(
Expand Down

0 comments on commit 3952654

Please sign in to comment.