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 0fea55fCopy full SHA for 0fea55f
hack/tests/scaffolding/e2e-go-scaffold.sh
@@ -5,9 +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
+# TODO: remove once PR 1566 is merged
+trap_add 'rm -f $ROOTDIR/go.mod' EXIT
11
BASEPROJECTDIR="/tmp/go-e2e-scaffold"
12
IMAGE_NAME="quay.io/example/memcached-operator:v0.0.1"
13
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