From 03cfd203e43ace06909e9a511db789cf819ea7eb Mon Sep 17 00:00:00 2001 From: KEINOS Date: Mon, 12 Jul 2021 23:07:10 +0900 Subject: [PATCH] feat: install oliosource in dev container --- .devcontainer/Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 1ee2c55..4869a70 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -13,5 +13,8 @@ USER vscode RUN \ # ShellSpec のインストール - sh -c 'wget -O- https://git.io/shellspec | sh -s -- --yes' - + sh -c 'wget -O- https://git.io/shellspec | sh -s -- --yes' \ + # OlioSource のインストール (shellcheck と同じ先) + && sudo wget https://git.io/oliosource \ + && sudo chmod +x ./oliosource \ + && sudo mv ./oliosource "$(dirname "$(which shellcheck)")"