From 043262b5f71e3030ad5553597b0e9696f6ff56b2 Mon Sep 17 00:00:00 2001 From: David Runge Date: Sat, 11 Jul 2020 18:13:20 +0200 Subject: Adding linting for initcpio scripts archiso/initcpio/install/*: Setting bash shebang for all scripts and making them comform with shellcheck. archiso/initcpio/{hooks,script}/*: Setting ash shebang for all scripts and making them comform with shellcheck (for dash, as shellcheck has no ash specific ruleset). Essentially the ash based scripts should be POSIX compliant as much as possible to have an easier time writing, debugging and maintaining them. Ensuring that variables are not treated as options and introducing variable quoting. .gitlab-ci.yml: Integrating shellcheck for initcpio scripts. Closes #32 --- hooks/archiso_shutdown | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'hooks/archiso_shutdown') diff --git a/hooks/archiso_shutdown b/hooks/archiso_shutdown index e50dedb..db8fb33 100644 --- a/hooks/archiso_shutdown +++ b/hooks/archiso_shutdown @@ -1,6 +1,8 @@ +#!/bin/ash + run_cleanuphook() { rm -rf /usr/lib/modules cp -ax / /run/initramfs } -# vim: set ft=sh ts=4 sw=4 et: +# vim: set ft=sh: -- cgit v1.2.3-54-g00ecf