Skip to content

Commit

Permalink
Add Go Module Replace Tool for Local SDK Usage
Browse files Browse the repository at this point in the history
  • Loading branch information
skmcgrail committed Jan 25, 2021
1 parent 6a65cc3 commit 4932dc5
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions local-mod-replace.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
#1/usr/bin/env bash

PROJECT_DIR=""
SDK_SOURCE_DIR=$(cd `dirname $0` && pwd)

usage() {
echo "Usage: $0 [-s SDK_SOURCE_DIR] [-d PROJECT_DIR]" 1>&2
exit 1
}

while getopts "hs:d:" options; do
case "${options}" in
s)
SDK_SOURCE_DIR=${OPTARG}
if [ "$SDK_SOURCE_DIR" == "" ]; then
echo "path to SDK source directory is required" || exit
usage
fi
;;
d)
PROJECT_DIR=${OPTARG}
;;
h)
usage
;;
*)
usage
;;
esac
done

if [ "$PROJECT_DIR" != "" ]; then
cd $PROJECT_DIR || exit
fi

go mod graph | awk '{print $1}' | cut -d '@' -f 1 | sort | uniq | grep "github.com/aws/aws-sdk-go-v2" | while read x; do
repPath=${x/github.com\/aws\/aws-sdk-go-v2/${SDK_SOURCE_DIR}}
echo -replace $x=$repPath
done | xargs go mod edit

0 comments on commit 4932dc5

Please sign in to comment.