Skip to content

Commit

Permalink
Merge pull request #1986 from Gauravjeetsingh/mac-arm64
Browse files Browse the repository at this point in the history
Skip the checkVersion condition for macArm architecture
  • Loading branch information
Gauravjeetsingh authored Jun 25, 2024
2 parents e6410e9 + f831d1f commit f15307a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packaging/release
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const release = async () => {
}

// win-ia32 and macArm is run on the same machine right after win-x64, so don't update the version
if (platform !== 'win32' || platform !== 'macArm') {
if (platform !== 'win32' && platform !== 'macArm') {
// Get all tags, sort in desc order, and get latest from current track
const gitTags = await git().tags();
const gitTag = gitTags.all.reverse().find((tag) => tag.indexOf(track) > -1);
Expand Down

0 comments on commit f15307a

Please sign in to comment.