From 6dcd5ebed62a3dcd7e0532d7773fb2dc33b6d80b Mon Sep 17 00:00:00 2001 From: Ryan McQuen <rpcm@linux.com> Date: Thu, 16 Jul 2020 13:37:05 -0700 Subject: [PATCH] Ensure new shells get the full PATH. --- .gitpod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod.yml b/.gitpod.yml index ab86ba7..059c171 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,5 +1,5 @@ tasks: - - init: export PATH="/usr/local/cargo/bin:$PATH" && ./install.sh + - init: echo 'export PATH="/usr/local/cargo/bin:$PATH"' >> /etc/profile && export PATH="/usr/local/cargo/bin:$PATH" && ./install.sh - command: ~/.cargo/bin/rustlings watch image: file: .gitpod.Dockerfile