mirror of
https://github.com/jdx/mise-action.git
synced 2026-05-14 13:50:33 +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
|
|
@ -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
2
dist/index.js
generated
vendored
|
|
@ -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
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
|
|
@ -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