Skip to content

Commit cd15eab

Browse files
committed
deploy: fix script for distributed provisioning
The introduction of sed had input/output backwards.
1 parent 110d3d0 commit cd15eab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deploy/kubernetes-distributed/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,5 +233,5 @@ fi
233233
# Create a test driver configuration in the place where the prow job
234234
# expects it?
235235
if [ "${CSI_PROW_TEST_DRIVER}" ]; then
236-
sed -e "s/capacity: true/capacity: ${have_csistoragecapacity}/" >"${BASE_DIR}/test-driver.yaml" "${CSI_PROW_TEST_DRIVER}"
236+
sed -e "s/capacity: true/capacity: ${have_csistoragecapacity}/" "${BASE_DIR}/test-driver.yaml" >"${CSI_PROW_TEST_DRIVER}"
237237
fi

0 commit comments

Comments
 (0)