Skip to content

Commit

Permalink
fix: update location for package.json
Browse files Browse the repository at this point in the history
Signed-off-by: Brent Hoover <[email protected]>
  • Loading branch information
brent-hoover committed Sep 23, 2022
1 parent acce8e9 commit 5b6e78b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/update.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const getLocalPackageJson = async () => {
* @returns {Object} - return the remote dependencies as object
*/
export const getRemoteDependencies = async () => {
const remotePackageJsonUrl = "https://raw.githubusercontent.com/reactioncommerce/reaction/trunk/package.json";
const remotePackageJsonUrl = "https://raw.githubusercontent.com/reactioncommerce/reaction/trunk/apps/reaction/package.json";
try {
const remotePackageJson = await wget(remotePackageJsonUrl);
return (JSON.parse(remotePackageJson)).dependencies;
Expand Down

0 comments on commit 5b6e78b

Please sign in to comment.