Skip to content

Commit e523e4d

Browse files
fixing formatting issue
1 parent cba2761 commit e523e4d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/build/src/extensions/core/ffmpeg.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,21 +50,21 @@ export function ffmpeg7(): BuildExtension {
5050
return {
5151
name: "ffmpeg7",
5252
onBuildComplete(context) {
53-
if(context.target === "dev") {
53+
if (context.target === "dev") {
5454
return;
5555
}
5656

5757
context.logger.debug("Adding ffmpeg 7");
5858

5959
context.addLayer({
60-
id:"ffmpeg7",
60+
id: "ffmpeg7",
6161
image: {
6262
instructions:[
6363
"RUN apt-get update && apt-get install -y --no-install-recommends wget xz-utils && apt-get clean && rm -rf /var/lib/apt/lists/*",
6464
"RUN wget https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz -O ffmpeg.tar.xz && tar xvf ffmpeg.tar.xz -C /usr/bin --strip-components=1 --no-anchored 'ffmpeg' 'ffprobe' && rm ffmpeg.tar.xz",
6565
],
6666
},
67-
deploy : {
67+
deploy: {
6868
env: {
6969
FFMPEG_PATH: "/usr/bin/ffmpeg",
7070
FFPROBE_PATH: "/usr/bin/ffprobe",

0 commit comments

Comments
 (0)