fix(signing): wrong path import

This commit is contained in:
Elian Doran
2025-05-14 09:02:37 +03:00
parent 293167c93e
commit f4e2296d9b

View File

@@ -1,6 +1,6 @@
const child_process = require("child_process");
const fs = require("fs");
const { default: path } = require("path");
const path = require("path");
module.exports = function (filePath) {
const { WINDOWS_SIGN_EXECUTABLE } = process.env;