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

@ -30,7 +30,7 @@ jobs:
[tools]
shellcheck = "0.9.0"
working_directory: app # [default: .] directory to run mise in
reshim: false # [default: false] run `mise reshim --all`
reshim: false # [default: false] run `mise reshim -f`
github_token: ${{ secrets.GITHUB_TOKEN }} # [default: ${{ github.token }}] GitHub token for API authentication
- run: shellcheck scripts/*.sh
test:

2
dist/index.js generated vendored
View file

@ -66736,7 +66736,7 @@ async function setMiseToml() {
const testMise = async () => mise(['--version']);
const miseInstall = async () => mise([`install ${core.getInput('install_args')}`]);
const miseLs = async () => mise([`ls`]);
const miseReshim = async () => mise([`reshim`, `--all`]);
const miseReshim = async () => mise([`reshim`, `-f`]);
const mise = async (args) => core.group(`Running mise ${args.join(' ')}`, async () => {
const cwd = core.getInput('working_directory') ||
core.getInput('install_dir') ||

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

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 =