From 3a4a2fa7243629b1d689ed3335bd8b8dc2aad994 Mon Sep 17 00:00:00 2001 From: ruki Date: Sat, 6 May 2023 11:47:50 +0800 Subject: [PATCH] v1.1.1 --- dist/index.js | 2 +- package.json | 2 +- src/index.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dist/index.js b/dist/index.js index 7fb96a9..2a630f1 100644 --- a/dist/index.js +++ b/dist/index.js @@ -71442,7 +71442,7 @@ async function run() { else { await unix_install_1.unixInstall(version); } - await exec_1.exec('xmake --version'); + await exec_1.exec('xmake --root --version'); } catch (error) { const ex = error; diff --git a/package.json b/package.json index 3735f8d..2fc4d26 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "github-action-setup-xmake", - "version": "1.1.0", + "version": "1.1.1", "description": "Set up your GitHub Actions workflow with a specific version of xmake", "main": "dist/index.js", "author": "OpportunityLiu", diff --git a/src/index.ts b/src/index.ts index e1f6e3c..caf50a9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -14,7 +14,7 @@ async function run(): Promise { } else { await unixInstall(version); } - await exec('xmake --version'); + await exec('xmake --root --version'); } catch (error) { const ex = error as Error; core.setFailed(ex.message);