Skip to content

Commit 21ee75c

Browse files
committed
plugin checks: convert name to lowercase
1 parent 39853e1 commit 21ee75c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugin-checks/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class PluginChecks {
2020

2121
async run() {
2222
try {
23-
const pluginName = getInput('plugin', { required: true })
23+
const pluginName = getInput('plugin', { required: true }).toLowerCase()
2424
console.log('**************************')
2525
console.log(`Running checks for plugin: ${pluginName}.`)
2626
console.log('**************************')

0 commit comments

Comments
 (0)