Skip to content

Commit

Permalink
fix: Update URL for documentation; improve code quality of install_ex…
Browse files Browse the repository at this point in the history
…tensions
  • Loading branch information
jhwohlgemuth committed Feb 26, 2024
1 parent 149601e commit 43d7fbf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ ARG S6_OVERLAY_GITHUB=https://github.com/just-containers/s6-overlay
ENV TZ=America/New_York
ENV TERM=xterm-256color
ENV DOTFILES="${HOME}/.dotfiles"
ENV PATH="${PATH}:${HOME}/.nix-profile/bin"
ENV PATH="${PATH}:/usr/local/bin/fn"
ENV PATH="${PATH}:${HOME}/.nix-profile/bin"
#
# %setup
#
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.rust
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ghcr.io/jhwohlgemuth/notebook:latest
# %labels
#
LABEL author="Jason Wohlgemuth"
LABEL org.opencontainers.image.source=https://github.com/jhwohlgemuth/env
LABEL org.opencontainers.image.source=https://github.com/jhwohlgemuth/gold
#
# %environment
#
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.web
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ghcr.io/jhwohlgemuth/notebook:latest
# %labels
#
LABEL author="Jason Wohlgemuth"
LABEL org.opencontainers.image.source=https://github.com/jhwohlgemuth/env
LABEL org.opencontainers.image.source=https://github.com/jhwohlgemuth/gold
#
# %arguments
#
Expand Down
2 changes: 1 addition & 1 deletion provision/scripts/notebook/install_extensions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ main() {
echo "Installing extensions for ${ARG} VS Code instance"
EXTENSIONS="$(jq -r ".${ARG}[]" "${EXTENSIONS_JSON}")"
for EXTENSION in ${EXTENSIONS}; do
code-server --config $CONFIG --install-extension "${EXTENSION}" --force
code-server --config "${CONFIG}" --install-extension "${EXTENSION}" --force
done
done
}
Expand Down

0 comments on commit 43d7fbf

Please sign in to comment.