Skip to content

Commit 0e86163

Browse files
build: rename atom.rc to electron.rc (electron#23098)
1 parent 714d6c5 commit 0e86163

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

BUILD.gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1051,7 +1051,7 @@ if (is_mac) {
10511051
if (is_win) {
10521052
sources += [
10531053
# TODO: we should be generating our .rc files more like how chrome does
1054-
"shell/browser/resources/win/atom.rc",
1054+
"shell/browser/resources/win/electron.rc",
10551055
"shell/browser/resources/win/resource.h",
10561056
]
10571057

script/release/version-bumper.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,9 @@ async function commitVersionBump (version) {
125125
await GitProcess.exec(gitArgs, ELECTRON_DIR);
126126
}
127127

128-
// updates atom.rc file with new semver values
128+
// updates electron.rc file with new semver values
129129
async function updateWinRC (components) {
130-
const filePath = path.resolve(ELECTRON_DIR, 'shell', 'browser', 'resources', 'win', 'atom.rc');
130+
const filePath = path.resolve(ELECTRON_DIR, 'shell', 'browser', 'resources', 'win', 'electron.rc');
131131
const data = await readFile(filePath, 'utf8');
132132
const arr = data.split('\n');
133133
arr.forEach((line, idx) => {

0 commit comments

Comments
 (0)