Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: hyperledger-labs/weaver-dlt-interoperability
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b3d1e0d87b8c002e4036f6bd8397104c13dc4466
Choose a base ref
..
head repository: hyperledger-labs/weaver-dlt-interoperability
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d2610fc1f5da86151c211beb2e84288f41db8729
Choose a head ref
Showing with 1 addition and 3 deletions.
  1. +1 −3 go-gen-checksum.sh
4 changes: 1 addition & 3 deletions go-gen-checksum.sh
Original file line number Diff line number Diff line change
@@ -17,9 +17,7 @@ for GOMODULE in ${GOMODULE_PATHS[@]}; do
echo "############# START $GOMODULE ################"
echo $GOMODULE
pushd $ROOT_DIR/$GOMODULE
make run-vendor > /dev/null
GOMOD_DEPS=$((go mod graph | grep "$REPO/$GOMODULE $REPO" | cut -d ' ' -f 2) || (make undo-vendor && echo "ERROR: In generating dependency graph" && exit 1))
make undo-vendor > /dev/null
GOMOD_DEPS=$((go mod graph | grep "$REPO/$GOMODULE $REPO" | cut -d ' ' -f 2) || (echo "ERROR: In generating dependency graph" && exit 1))
popd

for GOMOD_DEP in ${GOMOD_DEPS[@]}; do