Skip to content

Commit

Permalink
fix(linux): Use ~ as pre-release separator for deb targets (#7978)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvitale1989 committed Jan 12, 2024
1 parent fc13810 commit 2773410
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/stupid-bears-hammer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"app-builder-lib": patch
---

Use ~ as pre-release separator for deb targets
1 change: 1 addition & 0 deletions packages/app-builder-lib/src/targets/LinuxTargetHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ export class LinuxTargetHelper {
case "pacman":
return version.replace(/-/g, "_")
case "rpm":
case "deb":
return version.replace(/-/g, "~")
default:
return version
Expand Down

0 comments on commit 2773410

Please sign in to comment.