Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.

Commit f4e2296

Browse files
committed
fix(signing): wrong path import
1 parent 293167c commit f4e2296

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/desktop/electron-forge/sign-windows.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const child_process = require("child_process");
22
const fs = require("fs");
3-
const { default: path } = require("path");
3+
const path = require("path");
44

55
module.exports = function (filePath) {
66
const { WINDOWS_SIGN_EXECUTABLE } = process.env;

0 commit comments

Comments
 (0)