mirror of
https://github.com/jdx/mise-action.git
synced 2026-05-15 06:10:32 +00:00
Fix flag passed to mise reshim (#208)
* Fix flag passed to `mise reshim` * chore: update dist after build
This commit is contained in:
parent
56e0d817c9
commit
b64166e6f5
4 changed files with 4 additions and 4 deletions
|
|
@ -234,7 +234,7 @@ const testMise = async (): Promise<number> => mise(['--version'])
|
|||
const miseInstall = async (): Promise<number> =>
|
||||
mise([`install ${core.getInput('install_args')}`])
|
||||
const miseLs = async (): Promise<number> => mise([`ls`])
|
||||
const miseReshim = async (): Promise<number> => mise([`reshim`, `--all`])
|
||||
const miseReshim = async (): Promise<number> => mise([`reshim`, `-f`])
|
||||
const mise = async (args: string[]): Promise<number> =>
|
||||
core.group(`Running mise ${args.join(' ')}`, async () => {
|
||||
const cwd =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue