Skip to content

Commit

Permalink
fix(github): prompt case typo (#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
cujarrett committed Jan 17, 2021
1 parent 0fdfa9f commit 8e73bed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/github.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = async function (info) {
type: 'input',
name: 'token',
message:
'Provide a GItHub Personal Access Token (create a token at https://github.com/settings/tokens/new?scopes=repo)',
'Provide a GitHub Personal Access Token (create a token at https://github.com/settings/tokens/new?scopes=repo)',
default: async () => {
const clipboardValue = await clipboard.read();
return clipboardValue.length === 40 ? clipboardValue : null;
Expand Down

0 comments on commit 8e73bed

Please sign in to comment.