Skip to content

Commit 0c75150

Browse files
committed
Formatting
1 parent 7849873 commit 0c75150

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
> [!IMPORTANT]
2121
> 3.0 is coming, powered by Swiftly 🚀 - follow progress on https://github.com/swift-actions/setup-swift/pull/710
2222
23-
2423
## Usage
2524

2625
To run the action with the latest swift version available, simply add the action as a step in your workflow:

src/core/gpg.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export async function setupKeys(os: OS) {
99
"https://swift.org/keys/all-keys.asc",
1010
);
1111

12-
if (os === 'linux' || os === 'darwin') {
12+
if (os === "linux" || os === "darwin") {
1313
core.debug("Examining verification keys");
1414
await exec(`file "${path}"`);
1515
const isPlaintext = await exec(`gunzip --test "${path}"`, undefined, {
@@ -24,7 +24,7 @@ export async function setupKeys(os: OS) {
2424
]);
2525
}
2626

27-
if (os === 'win32') {
27+
if (os === "win32") {
2828
core.debug("Importing verification keys");
2929
await exec(`gpg --import "${path}"`);
3030
}

0 commit comments

Comments
 (0)