Skip to content

Commit 487d194

Browse files
chore: try reversing warnings before changing ext NUT
1 parent df4b2b7 commit 487d194

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sfCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ export abstract class SfCommand<T> extends Command {
402402
// eslint-disable-next-line @typescript-eslint/require-await, @typescript-eslint/no-explicit-any
403403
protected async finally(_: Error | undefined): Promise<any> {
404404
// flush warnings
405-
this.warningsToFlush.forEach((warning) => {
405+
this.warningsToFlush.reverse().forEach((warning) => {
406406
this.warn(warning);
407407
});
408408

0 commit comments

Comments
 (0)