Skip to content

Commit

Permalink
fix(demo): correct services clone commands
Browse files Browse the repository at this point in the history
In cca, correct the services clone command syntax to specify the tag
using git's --branch option (which also works for tags); it was
previously using golang syntax.

In psa, add --branch with the psa demo tag; previously, no ref was
specified, so the latest would be cloned, potentially causing interop
issues with other demo components.

Signed-off-by: setrofim <[email protected]>
  • Loading branch information
setrofim committed Jul 11, 2024
1 parent 23a8522 commit 7337706
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion demo/cca/manual-end-to-end.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export TOPDIR=$(pwd)
In the first shell, clone the Veraison services repository:

```shell
git clone https://github.com/veraison/services@demo-cca-1.0.0
git clone --branch demo-cca-1.0.0 https://github.com/veraison/services
```

Build the services:
Expand Down
2 changes: 1 addition & 1 deletion demo/psa/manual-end-to-end.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export TOPDIR=$(pwd)
In the first shell, clone the Veraison services repository:

```shell
git clone https://github.com/veraison/services
git clone --branch demo-psa-1.0.1 https://github.com/veraison/services
```

Build the services:
Expand Down

0 comments on commit 7337706

Please sign in to comment.