From c4895005ca598ab2876eb3619897fef2877d7d14 Mon Sep 17 00:00:00 2001 From: Andrei Matei Date: Wed, 30 May 2018 13:19:55 -0400 Subject: [PATCH] build: fix bad char This was breaking gceworker create. Release note: None --- build/bootstrap/bootstrap-debian.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/bootstrap/bootstrap-debian.sh b/build/bootstrap/bootstrap-debian.sh index 2a3f8ee3b55e..3a193cd14c4b 100755 --- a/build/bootstrap/bootstrap-debian.sh +++ b/build/bootstrap/bootstrap-debian.sh @@ -28,7 +28,7 @@ sudo adduser "${USER}" docker # Configure environment variables echo 'export PATH="/usr/lib/ccache:${PATH}"' >> ~/.bashrc_bootstrap -echo 'export COCKROACH_BUILDER_CCACHE=1"' >> ~/.bashrc_bootstrap +echo 'export COCKROACH_BUILDER_CCACHE=1' >> ~/.bashrc_bootstrap # NB: GOPATH defaults to ${HOME}/go (but maybe having it set for the remainder # of the script is enough reason to keep it here). echo 'export GOPATH=${HOME}/go' >> ~/.bashrc_bootstrap