Skip to content

Commit

Permalink
Rename upload as upload.template to avoid overwriting
Browse files Browse the repository at this point in the history
  • Loading branch information
samdeane committed Nov 26, 2024
1 parent f0dcfd3 commit e5198b1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/ReleaseTools/OptionParser.swift
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class OptionParser {
// ... on the command line
buildOffset = offset

} else if setting = getDefault(for: "offset"), let offset = UInt(setting) {
} else if let setting = getDefault(for: "offset"), let offset = UInt(setting) {
// ... or as a default setting
buildOffset = offset
}
Expand Down
File renamed without changes.

0 comments on commit e5198b1

Please sign in to comment.