Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/generate-login-url.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function getUpdatedEnvFile(filePath, url, timestamp) {
* @returns {Promise<string>} the scratch org url fetched from the getUrlCmd
*/
async function getScratchOrgLoginUrl() {
const getUrlCmd = 'sfdx org open -p /lightning -r --json';
const getUrlCmd = 'sf org open -p /lightning -r --json';
console.log('Executing the following command: ', getUrlCmd);
const { stderr, stdout } = await exec(getUrlCmd, { cwd: __dirname });
if (stderr) throw new Error(stderr);
Expand Down