You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update malcontent-samples references to chainguard-sandbox
The malcontent-samples repository was moved from chainguard-dev to
chainguard-sandbox as part of the GitHub org reorganization.
Updated references in:
- Makefile
- DEVELOPMENT.md
- cmd/mal/mal.go
- tests/samples_test.go
- pkg/programkind/fuzz_test.go
Copy file name to clipboardExpand all lines: tests/samples_test.go
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -41,16 +41,16 @@ var (
41
41
42
42
funcinit() {
43
43
flag.StringVar(&sampleDir, "sample_dir",
44
-
"../out/chainguard-dev/malcontent-samples",
45
-
"root directory of sample data, typically checked out from https://github.com/chainguard-dev/malcontent-samples via 'make integration'")
44
+
"../out/chainguard-sandbox/malcontent-samples",
45
+
"root directory of sample data, typically checked out from https://github.com/chainguard-sandbox/malcontent-samples via 'make integration'")
46
46
47
47
_, me, _, _:=runtime.Caller(0) //nolint:dogsled // don't need the rest
48
48
testDataDir=filepath.Dir(me)
49
49
fmt.Printf(">>> test data dir: %s\n", testDataDir)
50
50
fmt.Printf(">>> sample data dir: %s\n", sampleDir)
51
51
52
52
if_, err:=os.Stat(sampleDir); err!=nil {
53
-
fmt.Printf("samples directory %q does not exist - please use 'make integration' or git clone https://github.com/chainguard-dev/malcontent-samples appropriately. This path may be overridden by --sample_dir", sampleDir)
53
+
fmt.Printf("samples directory %q does not exist - please use 'make integration' or git clone https://github.com/chainguard-sandbox/malcontent-samples appropriately. This path may be overridden by --sample_dir", sampleDir)
0 commit comments