From 93bd455bbd8266cb49eb2421459672d621dc11a0 Mon Sep 17 00:00:00 2001 From: JonJagger Date: Wed, 20 Dec 2023 14:11:35 +0000 Subject: [PATCH] Remove extra backslashes in start-point-create help message --- app/sh/start-point-create.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/app/sh/start-point-create.sh b/app/sh/start-point-create.sh index 5e413f7..60f6060 100755 --- a/app/sh/start-point-create.sh +++ b/app/sh/start-point-create.sh @@ -34,15 +34,15 @@ show_use() Eg 7686e9d@https://github.com/cyber-dojo-start-points/gcc-assert Example 1: non local tagged - cyber-dojo start-point create \\ - eg/first \\ - --languages \\ + cyber-dojo start-point create \ + eg/first \ + --languages \ 384f486@https://github.com/cyber-dojo-start-points/java-junit Example 2: read tagged git-repo s from a local file - cyber-dojo start-point create \\ - eg/second \\ - --languages \\ + cyber-dojo start-point create \ + eg/second \ + --languages \ \$(< my-language-selection.txt) cat my-language-selection.txt @@ -54,9 +54,9 @@ show_use() Example 3: read tagged git-repo s from a curl'd file ORG=https://raw.githubusercontent.com/cyber-dojo REPO=languages-start-points - cyber-dojo start-point create \\ - eg/third \\ - --languages \\ + cyber-dojo start-point create \ + eg/third \ + --languages \ \$(curl --silent ${ORG}/${REPO}/master/start-points/git_repo_urls.all.tagged) EOF