Skip to content

BUG FIX: 'rsc start --debug' gave 'operand expected (error token is "… #403

BUG FIX: 'rsc start --debug' gave 'operand expected (error token is "…

BUG FIX: 'rsc start --debug' gave 'operand expected (error token is "… #403

Workflow file for this run

on: [push, pull_request]
name: shellcheck
jobs:
checks:
if: "! contains(github.event.head_commit.message, '[ci skip]')"
timeout-minutes: 10
runs-on: ubuntu-latest
name: shellcheck
strategy:
fail-fast: false
steps:
- name: Checkout git repository
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get install -y shellcheck
shellcheck --version
curl -L -O https://github.com/koalaman/shellcheck/releases/download/v0.10.0/shellcheck-v0.10.0.linux.x86_64.tar.xz
tar Jxf shellcheck-v0.10.0.linux.x86_64.tar.xz
mv shellcheck-v0.10.0/shellcheck bin
PATH="bin:$PATH" shellcheck --version
- name: ShellCheck
run: |
PATH="bin:$PATH" make shellcheck