commit 6b51cd1d84f47d72e341ad2d45b1f6ec9407c390 parent a2efc79af71cf34efa97497dae828f32fe3c80af Author: aabacchus <ben@bvnf.space> Date: Mon, 24 Jan 2022 13:45:41 +0000 fix shellcheck Diffstat:
M | .github/workflows/main.yml | | | 2 | +- |
M | weston/build | | | 2 | +- |
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml @@ -7,4 +7,4 @@ jobs: - uses: actions/checkout@v2 - name: Run shellcheck run: | - find . -name build -or -name post-install -exec shellcheck {} + + find . -type f -name build -o -name post-install | sed 's/[^[:alnum:]]/\\&/g' | xargs shellcheck diff --git a/weston/build b/weston/build @@ -1,6 +1,6 @@ #!/bin/sh -e -export DESTDIR=$1 +export DESTDIR="$1" meson build/ \ --prefix=/usr \