Fix flag passed to mise reshim (#208)

* Fix flag passed to `mise reshim`

* chore: update dist after build
This commit is contained in:
Andrew Driggs 2025-07-15 17:30:41 -07:00 committed by GitHub
parent 56e0d817c9
commit b64166e6f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View file

@ -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 =