Skip to content

Commit

Permalink
Update still.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
JonnyBurger committed Jun 12, 2024
1 parent 671a78a commit fcaeec9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/cli/src/render-flows/still.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import {ConfigInternals} from '../config';
import {determineFinalStillImageFormat} from '../determine-image-format';
import {getAndValidateAbsoluteOutputFile} from '../get-cli-options';
import {getCompositionWithDimensionOverride} from '../get-composition-with-dimension-override';
import {makeHyperlink} from '../hyperlinks/make-link';
import {Log} from '../log';
import {makeOnDownload} from '../make-on-download';
import {parsedCli, quietFlagProvided} from '../parsed-cli';
Expand Down Expand Up @@ -272,6 +273,7 @@ export const renderStillFlow = async ({
printFact('info')({
indent,
left: 'Composition',
link: 'https://remotion.dev/docs/terminology/composition',
logLevel,
right: [compositionId, isVerbose ? `(${reason})` : null]
.filter(truthy)
Expand Down Expand Up @@ -366,7 +368,7 @@ export const renderStillFlow = async ({
Log.info(
{indent, logLevel},
chalk.blue(
`${(exists ? '○' : '+').padEnd(LABEL_WIDTH)} ${relativeOutputLocation}`,
`${(exists ? '○' : '+').padEnd(LABEL_WIDTH)} ${makeHyperlink({url: 'file://' + absoluteOutputLocation, text: relativeOutputLocation, fallback: relativeOutputLocation})}`,
),
);
};

0 comments on commit fcaeec9

Please sign in to comment.