Skip to content

Commit

Permalink
fix: use path instead of path/posix for publishing binaries (#8631)
Browse files Browse the repository at this point in the history
  • Loading branch information
olivereisenhut authored Oct 25, 2024
1 parent cfa67c0 commit dcd91a1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/wet-hats-drum.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"electron-publish": patch
---

fix: Remove path from published binaries
2 changes: 1 addition & 1 deletion packages/electron-publish/src/httpPublisher.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Arch } from "builder-util"
import { stat } from "fs-extra"
import { ClientRequest } from "http"
import { basename } from "path/posix"
import { basename } from "path"
import { Publisher } from "./publisher"
import { PublishContext, UploadTask } from "."

Expand Down

0 comments on commit dcd91a1

Please sign in to comment.