Skip to content

Commit

Permalink
Make release package file names more uname friendly on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
cmcgee1024 committed Dec 6, 2024
1 parent 2794056 commit 3d52d33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/build-swiftly-release/BuildSwiftlyRelease.swift
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ struct BuildSwiftlyRelease: AsyncParsableCommand {
#if arch(arm64)
let releaseArchive = "\(releaseDir)/swiftly-\(version)-aarch64.tar.gz"
#else
let releaseArchive = "\(releaseDir)/swiftly-\(version).tar.gz"
let releaseArchive = "\(releaseDir)/swiftly-\(version)-x86_64.tar.gz"
#endif

try runProgram(tar, "--directory=\(releaseDir)", "-czf", releaseArchive, "swiftly", "LICENSE.txt")
Expand Down

0 comments on commit 3d52d33

Please sign in to comment.