Skip to content

Commit

Permalink
Fix shell cmd argument (#403)
Browse files Browse the repository at this point in the history
* User input not interpreted by shell
* Bump version
  • Loading branch information
AnHeuermann committed Jul 5, 2024
1 parent 7b45088 commit eccd9e6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "setup-openmodelica",
"description": "Setup OpenModelica Compiler omc",
"version": "1.0.0",
"version": "1.0.1",
"author": "Andreas Heuermann",
"license": "OSMC-PL-1-8",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ export async function installLibs(librariesInput: string[]): Promise<void> {

// Run install script
core.info(`Running install script ${filename}`)
await exec.exec(`omc ${filename}`)
await exec.exec(`omc`, [filename])

// Clean up
fs.rmSync(filename)
Expand Down

0 comments on commit eccd9e6

Please sign in to comment.