Skip to content

Commit

Permalink
Исправлена ошибка сборки на linux
Browse files Browse the repository at this point in the history
  • Loading branch information
sfaqer committed Oct 4, 2023
1 parent 79159af commit cdf1813
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
oscript_version: [1.3.0, 1.5.0, 1.8.1] # fixme вернуть dev
oscript_version: [lts, stable, dev]
os: [macOS-latest, ubuntu-latest, windows-latest]
name: check oscript
steps:
Expand Down
4 changes: 3 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8703,7 +8703,9 @@ async function run() {
const options = {};
options.listeners = {
stdout: (data) => {
output += data.toString();
if (data.toString().includes('ovm')) {
output += data.toString();
}
}
};
await exec.exec('ovm', ['which', 'current'], options);
Expand Down
4 changes: 3 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ async function run() {
const options = {};
options.listeners = {
stdout: (data) => {
output += data.toString();
if (data.toString().includes('ovm')) {
output += data.toString();
}
}
};
await exec.exec('ovm', ['which', 'current'], options);
Expand Down

0 comments on commit cdf1813

Please sign in to comment.