From f378f067d4aceb667c8689c3f13476a893964918 Mon Sep 17 00:00:00 2001 From: Tyler Jang Date: Mon, 23 Sep 2024 12:08:48 -0700 Subject: [PATCH] (Fix): Fix squawk platform constraint (#875) Fix typo in #872 --- linters/squawk/squawk.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linters/squawk/squawk.test.ts b/linters/squawk/squawk.test.ts index 470ecbf68..84ccbe43a 100644 --- a/linters/squawk/squawk.test.ts +++ b/linters/squawk/squawk.test.ts @@ -1,7 +1,7 @@ import { linterCheckTest } from "tests"; -// No release for squawk on arm64 darwin https://github.com/sbdchd/squawk/issues/372 +// No release for squawk on arm64 linux https://github.com/sbdchd/squawk/issues/372 linterCheckTest({ linterName: "squawk", - skipTestIf: () => process.arch === "arm64" && process.platform === "darwin", + skipTestIf: () => process.arch === "arm64" && process.platform === "linux", });