We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35519bd commit 26414eeCopy full SHA for 26414ee
local-mod-replace.sh
@@ -1,4 +1,4 @@
1
-#1/usr/bin/env bash
+#!/usr/bin/env bash
2
3
PROJECT_DIR=""
4
SDK_SOURCE_DIR=$(cd `dirname $0` && pwd)
@@ -30,7 +30,7 @@ while getopts "hs:d:" options; do
30
done
31
32
if [ "$PROJECT_DIR" != "" ]; then
33
- cd $PROJECT_DIR || exit
+ cd "$PROJECT_DIR" || exit
34
fi
35
36
go mod graph | awk '{print $1}' | cut -d '@' -f 1 | sort | uniq | grep "github.com/aws/aws-sdk-go-v2" | while read x; do
0 commit comments