From d6cf7bef88df8252b2b0fb80d871b1fcfaab4512 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Tue, 15 Sep 2020 10:22:53 +0200 Subject: [PATCH] :shirt: Fix shellcheck linter warning --- vscode/rootfs/etc/services.d/code/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vscode/rootfs/etc/services.d/code/run b/vscode/rootfs/etc/services.d/code/run index c8419e0..f4b58d4 100644 --- a/vscode/rootfs/etc/services.d/code/run +++ b/vscode/rootfs/etc/services.d/code/run @@ -28,5 +28,5 @@ export HASS_SERVER="http://supervisor/core" export HASS_TOKEN="${SUPERVISOR_TOKEN:-}" # Run the code server -cd "${config_path}" +cd "${config_path}" || bashio::exit.nok "Could not change working directory" exec code-server "${options[@]}" "${config_path}"