Skip to content

Commit

Permalink
Merge pull request #57 from sayboras/tam/fix-start-args
Browse files Browse the repository at this point in the history
fix: Correct the format for start-args
  • Loading branch information
spowelljr authored Jan 17, 2023
2 parents 65adf85 + 84f0e06 commit ab221de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ inputs:
required: false
default: ''
start-args:
description: 'Any flags you would regularly pass into minikube via CLI'
description: 'Any flags you would regularly pass into minikube via CLI, seperated by space'
required: false
default: ''
runs:
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/inputs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ export const setArgs = (args: string[]) => {
}
const startArgs = getInput('start-args')
if (startArgs !== '') {
args.push(startArgs)
args.push(...startArgs.split(' '))
}
}

0 comments on commit ab221de

Please sign in to comment.