Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix paths for vscode #205

Merged
merged 1 commit into from
Nov 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/py/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ RUN conda install gxx_linux-64 && \
# install renku-python
ENV RENKU_DISABLE_VERSION_CHECK 1

ENV PATH=$PATH:$HOME/.renku/bin
ENV PATH=$HOME/.local/bin:$PATH:$HOME/.renku/bin

ARG RENKU_VERSION
RUN mkdir -p $HOME/.renku/bin && \
Expand Down
3 changes: 2 additions & 1 deletion scripts/install-vscode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ VSCODE_VERSION=${VSCODE_VERSION:="3.10.2"}

# code-server installation
mkdir -p ~/.local/lib
mkdir -p ~/.local/bin
curl -fL https://github.com/cdr/code-server/releases/download/v${VSCODE_VERSION}/code-server-${VSCODE_VERSION}-linux-amd64.tar.gz \
| tar -C ~/.local/lib -xz
| tar -C ~/.local/lib -xz
mv ~/.local/lib/code-server-${VSCODE_VERSION}-linux-amd64 ~/.local/lib/code-server-${VSCODE_VERSION}
ln -s ~/.local/lib/code-server-${VSCODE_VERSION}/bin/code-server ~/.local/bin/code-server

Expand Down