Skip to content
This repository was archived by the owner on Jan 5, 2026. It is now read-only.

Commit f22610b

Browse files
committed
Updated path to electron-builder hashFile utility
1 parent c9413ff commit f22610b

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919
- [main] Fixed a bug where we were expecting the incorrect shape from Electron's updated `dialog.showOpenDialog()` API in PR [2237](https://github.com/microsoft/BotFramework-Emulator/pull/2237)
2020
- [main] Fixed a bug that was causing Electron's native context menu to silently fail when selecting an option in PR [2238](https://github.com/microsoft/BotFramework-Emulator/pull/2238)
2121
- [client] Fixed an aligment issue with the caret button of the `<SplitButton />` widget in PR [2239](https://github.com/microsoft/BotFramework-Emulator/pull/2239)
22+
- [main] Fixed an outdated path to an `electron-builder` utility function used to generate the auto update yaml files in PR [2240](https://github.com/microsoft/BotFramework-Emulator/pull/2240)
2223

2324
## v4.11.0 - 2020 - 11 - 05
2425
- [client] Moved from master to main as the default branch. [2194](https://github.com/microsoft/BotFramework-Emulator/pull/2194)

packages/app/main/scripts/common.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@
3333

3434
/** Hashes a file asynchronously */
3535
function hashFileAsync(filename, algo = 'sha512', encoding = 'base64') {
36-
var builderUtil = require('builder-util');
36+
var builderUtil = require('app-builder-lib/out/util/hash');
3737
return builderUtil.hashFile(filename, algo, encoding);
3838
}
3939

4040
module.exports = {
41-
hashFileAsync
41+
hashFileAsync,
4242
};

0 commit comments

Comments
 (0)