Skip to content

Commit

Permalink
plugin checks: convert name to lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
bwp91 committed Oct 24, 2024
1 parent 39853e1 commit 21ee75c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugin-checks/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class PluginChecks {

async run() {
try {
const pluginName = getInput('plugin', { required: true })
const pluginName = getInput('plugin', { required: true }).toLowerCase()
console.log('**************************')
console.log(`Running checks for plugin: ${pluginName}.`)
console.log('**************************')
Expand Down

0 comments on commit 21ee75c

Please sign in to comment.