Skip to content

Commit 7d30c71

Browse files
committed
eclass/coreos-kernel: fix indentation and codestyle
Signed-off-by: Daniel Zatovic <daniel.zatovic@gmail.com>
1 parent 1dbd08e commit 7d30c71

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

sdk_container/src/third_party/coreos-overlay/eclass/coreos-kernel.eclass

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ get_sig_key() {
154154
die "MODULES_SIGN_KEY variable is different than MODULE_SIG_KEY in kernel config."
155155
fi
156156

157-
echo $sig_key
157+
echo "$sig_key"
158158
}
159159

160160
validate_sig_key() {
@@ -170,13 +170,13 @@ setup_keys() {
170170
echo "Preparing keys at $sig_key"
171171

172172
if [[ ${COREOS_OFFICIAL:-0} -eq 0 ]]; then
173-
# Allow portage sandbox to write to the module signing key directory,
174-
# which is in home for unofficial builds
175-
addwrite "${MODULE_SIGNING_KEY_DIR}"
176-
fi
173+
# Allow portage sandbox to write to the module signing key directory,
174+
# which is in home for unofficial builds
175+
addwrite "${MODULE_SIGNING_KEY_DIR}"
176+
fi
177177

178-
mkdir -p $MODULE_SIGNING_KEY_DIR
179-
pushd $MODULE_SIGNING_KEY_DIR
178+
mkdir -p "$MODULE_SIGNING_KEY_DIR"
179+
pushd "$MODULE_SIGNING_KEY_DIR"
180180

181181
mkdir -p gen_certs || die
182182
# based on the default config the kernel auto-generates

0 commit comments

Comments
 (0)