From b0f9b4cfd0222f16b9b90c27462201822ac388cc Mon Sep 17 00:00:00 2001 From: Konstantinos Samaras-Tsakiris Date: Mon, 22 Oct 2018 22:02:04 +0300 Subject: [PATCH] Fix bash (#271) Remove spaces around a bash variable declaration. --- object_detection/setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/object_detection/setup.md b/object_detection/setup.md index c0fec8c9..164653c0 100644 --- a/object_detection/setup.md +++ b/object_detection/setup.md @@ -107,7 +107,7 @@ Now we will configure and apply the `decompress-data-job` component: ``` ANNOTATIONS_PATH="${MOUNT_PATH}/annotations.tar.gz" DATASET_PATH="${MOUNT_PATH}/images.tar.gz" -PRE_TRAINED_MODEL_PATH = "${MOUNT_PATH}/faster_rcnn_resnet101_coco_2018_01_28.tar.gz" +PRE_TRAINED_MODEL_PATH="${MOUNT_PATH}/faster_rcnn_resnet101_coco_2018_01_28.tar.gz" ks param set decompress-data-job mountPath ${MOUNT_PATH} ks param set decompress-data-job pvc ${PVC}