Skip to content
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.

Commit

Permalink
fix: INT-2340 ensured the command parameter in the CS URL (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
grzpab authored Dec 21, 2023
1 parent a7dba2a commit abff42f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/executeMainThread.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,8 @@ export const executeMainThread = async () => {
});
}

exit();

return;
}

Expand Down
2 changes: 1 addition & 1 deletion src/handleLoginCliCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const handleLoginCliCommand = async (
'Opening the Codemod Studio... Please Sign in with Github!',
);
const success = openURL(
`https://codemod.studio/${ACCESS_TOKEN_REQUESTED_BY_CLI_KEY}`,
`https://codemod.studio/?command=${ACCESS_TOKEN_REQUESTED_BY_CLI_KEY}`,
);
if (!success) {
printer.printOperationMessage({
Expand Down

0 comments on commit abff42f

Please sign in to comment.