rtx --version

This commit is contained in:
Jeff Dickey 2023-01-14 23:46:01 -06:00
parent c769086915
commit 717b2e3f59
3 changed files with 3 additions and 1 deletions

1
dist/index.js generated vendored
View file

@ -47,6 +47,7 @@ function run() {
return __awaiter(this, void 0, void 0, function* () {
yield setupRTX();
yield setToolVersions();
yield exec.exec('rtx', ['--version']);
yield exec.exec('rtx', ['install']);
});
}

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View file

@ -5,6 +5,7 @@ import * as fs from 'fs'
async function run(): Promise<void> {
await setupRTX()
await setToolVersions()
await exec.exec('rtx', ['--version'])
await exec.exec('rtx', ['install'])
}