From f60e7866da02089f35e28ecb9a66ad9145b6a6e4 Mon Sep 17 00:00:00 2001 From: Kreyren Date: Sat, 25 Jan 2020 16:33:29 +0000 Subject: [PATCH] gitpod: Added xclip and muted sterr of curl --- gitpod/gitpod.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gitpod/gitpod.Dockerfile b/gitpod/gitpod.Dockerfile index 68e8991..44b6a61 100644 --- a/gitpod/gitpod.Dockerfile +++ b/gitpod/gitpod.Dockerfile @@ -10,12 +10,12 @@ RUN apt upgrade -y RUN apt dist-upgrade -y # Install linting dependencies -RUN apt install -y shellcheck firefox tree +RUN apt install -y shellcheck firefox tree xclip # Add custom functions RUN if ! grep -qF 'ix()' /etc/bash.bashrc; then printf '%s\n' \ '# Custom' \ - "ix() { curl -F 'f:1=<-' ix.io ;}" \ + "ix() { curl -F 'f:1=<-' ix.io 2>/dev/null ;}" \ "xcopy() { xcopy="xclip -se C" ;}" \ >> /etc/bash.bashrc; fi