Skip to content

Commit 57b4baf

Browse files
tyao1facebook-github-bot
authored andcommitted
Fix build script error and bump devtools version
Summary: To get ready for publishing a new version internally, also fixes an error that prevented the build script from completing Reviewed By: andreqi Differential Revision: D61029369 fbshipit-source-id: a1047ed34981d8ccf432f30a53f69c9d2b6eee49
1 parent fe1ec33 commit 57b4baf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

shells/browser/chrome/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"manifest_version": 2,
33
"name": "Relay Developer Tools",
44
"description": "Adds Relay debugging tools to the Chrome Developer Tools.",
5-
"version": "0.9.16",
6-
"version_name": "0.9.16",
5+
"version": "0.9.17",
6+
"version_name": "0.9.17",
77
"update_url": "https://www.internalfb.com/intern/browser_extensions/chrome/update.xml",
88
"minimum_chrome_version": "78",
99
"icons": {

shells/browser/shared/build.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ const postProcess = async (tempPath, destinationPath) => {
9696
const packedDestPath = join(destinationPath, 'RelayDevTools.zip');
9797
const unpackedDestPath = join(destinationPath, 'unpacked');
9898

99-
await move(unpackedSourcePath, unpackedDestPath); // Copy built files to destination
100-
await move(packedSourcePath, packedDestPath); // Copy built files to destination
99+
await move(unpackedSourcePath, unpackedDestPath, { overwrite: true }); // Copy built files to destination
100+
await move(packedSourcePath, packedDestPath, { overwrite: true }); // Copy built files to destination
101101
await remove(tempPath); // Clean up temp directory and files
102102
};
103103

0 commit comments

Comments
 (0)