Skip to content

Commit

Permalink
fix(electron-updater): fix import errors
Browse files Browse the repository at this point in the history
Fix import errors for fs and path so that the test for admin priviliges functions

Closes electron-userland#6134
  • Loading branch information
burnhamup committed Aug 10, 2021
1 parent c2916cf commit d7520c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/electron-updater/src/BaseUpdater.ts
@@ -1,5 +1,5 @@
import fs from "fs"
import path from "path"
import * as fs from "fs"
import * as path from "path"
import { AllPublishOptions } from "builder-util-runtime"
import { AppAdapter } from "./AppAdapter"
import { AppUpdater, DownloadExecutorTask } from "./AppUpdater"
Expand Down

0 comments on commit d7520c2

Please sign in to comment.