Skip to content

Commit 88c48ec

Browse files
committed
fix(maintenance_scripts: lint: shellcheck_makefile): force shell to sh before this got fixed
1 parent b44cd1a commit 88c48ec

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ jobs:
4545
run: sed -i -e 's|FROM archlinux:base-devel|FROM actionless/pikaur|' Dockerfile_${PYVER}
4646

4747
- name: build docker image
48-
run: docker build . -f Dockerfile_${PYVER} -t oomox
48+
run: docker build . -f Dockerfile_${PYVER} -t oomox_base16_plugin_test
4949

5050
- name: run ci in docker
5151
run: docker run
5252
-e SKIP_SHELLCHECK=${SKIP_SHELLCHECK}
5353
-e SKIP_MYPY=${SKIP_MYPY}
5454
-e SKIP_VULTURE=${SKIP_VULTURE}
5555
-e THEMIX_GUI_PATH=${THEMIX_GUI_PATH}
56-
oomox:latest
56+
oomox_base16_plugin_test:latest
5757
./maintenance_scripts/lint.sh

maintenance_scripts/lint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ else
9797
echo ':: shellcheck passed ::'
9898

9999
echo -e "\n== Running Makefile shellcheck:"
100-
"${THEMIX_GUI_PATH}/maintenance_scripts/makefile_shellcheck.py" ./Makefile_oomox_plugin
100+
"${THEMIX_GUI_PATH}/maintenance_scripts/makefile_shellcheck.py" --shell=sh ./Makefile_oomox_plugin
101101
echo ':: makefile shellcheck passed ::'
102102
fi
103103

0 commit comments

Comments
 (0)