Skip to content

Commit

Permalink
Clarify to VSC 'press enter'
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwofford committed Nov 20, 2024
1 parent 1a55425 commit 7e40154
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions public/scripts/hackatime-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,16 @@ check_vscode() {
error "Couldn't detect VS Code! Install it from https://code.visualstudio.com/Download. If you already installed it, try this:"
case "$OSTYPE" in
darwin*)
error "(In VS Code, press ⌘⇧P and type \"Shell Command: Install 'code' command in PATH\".)"
error "(In VS Code, press ⌘⇧P and type \"Shell Command: Install 'code' command in PATH\". Then press 'Enter'.)"
;;
msys* | win32*)
error "(In VS Code, press Ctrl+Shift+P and type \"Shell Command: Install 'code' command in PATH\".)"
error "(In VS Code, press Ctrl+Shift+P and type \"Shell Command: Install 'code' command in PATH\". Then press 'Enter'.)"
;;
*)
error "(In VS Code, press Ctrl+Shift+P and type \"Shell Command: Install 'code' command in PATH\".)"
error "(In VS Code, press Ctrl+Shift+P and type \"Shell Command: Install 'code' command in PATH\". Then press 'Enter'.)"
;;
esac
error "Once that's done, restart this script."
exit 1
fi
}
Expand Down

0 comments on commit 7e40154

Please sign in to comment.