Skip to content

Commit 039ff2f

Browse files
committed
fix: ignore close error
1 parent a8cd372 commit 039ff2f

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/scripts/upload-packages-to-release.mts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ for await (const file of expandGlob(filesGlob)) {
4040
repo: "altinn-authorization-utils",
4141
});
4242
} finally {
43-
fs.close();
43+
try {
44+
fs.close();
45+
} catch {
46+
// ignore
47+
}
4448
}
4549
}

src/Altinn.Urn/Version.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22

33
<PropertyGroup>
4-
<Version>1.4.6</Version>
4+
<Version>1.4.0</Version>
55
</PropertyGroup>
66

77
</Project>

0 commit comments

Comments
 (0)