From cf484c484fe0f54c5f06139455e0723965e9ac10 Mon Sep 17 00:00:00 2001 From: Jeffrey Date: Mon, 27 Nov 2023 23:27:01 +0800 Subject: [PATCH] =?UTF-8?q?[fix]=20replace=20${go=20env=20GOPATH}=20with?= =?UTF-8?q?=20$(go=20env=20GOPATH)=20to=20get=20the=20prope=E2=80=A6=20(#1?= =?UTF-8?q?952)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/kubeflow/training-operator/issues/1951 --- docs/development/developer_guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/development/developer_guide.md b/docs/development/developer_guide.md index 406399467e..7e652c6e96 100644 --- a/docs/development/developer_guide.md +++ b/docs/development/developer_guide.md @@ -11,8 +11,8 @@ Kubeflow Training Operator is currently at v1. Create a symbolic link inside your GOPATH to the location you checked out the code ```sh -mkdir -p ${go env GOPATH}/src/github.com/kubeflow -ln -sf ${GIT_TRAINING} ${go env GOPATH}/src/github.com/kubeflow/training-operator +mkdir -p $(go env GOPATH)/src/github.com/kubeflow +ln -sf ${GIT_TRAINING} $(go env GOPATH)/src/github.com/kubeflow/training-operator ``` - GIT_TRAINING should be the location where you checked out https://github.com/kubeflow/training-operator