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 1abfa9c commit a1f3bf1Copy full SHA for a1f3bf1
hack/tests/scaffolding/e2e-go-scaffold.sh
@@ -5,10 +5,8 @@ set -ex
5
source hack/lib/test_lib.sh
6
7
ROOTDIR="$(pwd)"
8
-trap_add 'rm $ROOTDIR/go.mod || true' EXIT
9
-GOTMP="$(mktemp -d)"
10
-trap_add 'rm -rf $GOTMP' EXIT
11
-BASEPROJECTDIR="/tmp/go-e2e-scaffold"
+# TODO: remove once PR 1566 is merged
+trap_add 'rm -f $ROOTDIR/go.mod' EXIT
12
IMAGE_NAME="quay.io/example/memcached-operator:v0.0.1"
13
14
rm -rf $BASEPROJECTDIR
hack/tests/scaffolding/scaffold-memcached.go
@@ -77,6 +77,7 @@ func main() {
77
78
replace := getGoModReplace(localSDKPath)
79
if replace.repo != sdkRepo {
80
+ // TODO: Remove when PR 1566 is merged
81
if replace.isLocal {
82
// A hacky way to get local module substitution to work is to write a
83
// stub go.mod into the local SDK repo referred to in
0 commit comments