diff options
| author | Yuriy Andamasov <yuriy@vyos.io> | 2026-04-19 02:13:10 +0300 |
|---|---|---|
| committer | Yuriy Andamasov <yuriy@vyos.io> | 2026-04-19 02:13:10 +0300 |
| commit | 6fc03e22ea2214512d2c6098ca34442d61a13560 (patch) | |
| tree | ac0ae796027a036fcb23b94c32311d723d427819 /.github/workflows | |
| parent | 654fb48ff101bae2be751c700dd0eaa43b0bea08 (diff) | |
| download | community.vyos.net-6fc03e22ea2214512d2c6098ca34442d61a13560.tar.gz community.vyos.net-6fc03e22ea2214512d2c6098ca34442d61a13560.zip | |
ci: fix apt-get update and shell ternary robustness
🤖 Generated by robots (https://vyos.io)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/pr-check.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 03a1c54..90dafff 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v4 - name: Install cmark - run: sudo apt-get install -y cmark + run: sudo apt-get update && sudo apt-get install -y cmark - name: Install Dart Sass run: npm install -g sass@1.32.8 |
