diff options
| author | Ishita Sequeira <46771830+ishitasequeira@users.noreply.github.com> | 2024-12-04 21:34:58 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-04 11:04:58 -0500 |
| commit | 8076d2005ea625c73604073fca43df38eb675751 (patch) | |
| tree | 1570ba5969882a26e021875da86bee6850a9cfc6 /registry-scanner/test/testdata/scripts | |
| parent | c3f0eff54daf871fa1c274462b17f5149c11d368 (diff) | |
Add image folder to registry scanner (#952)
Signed-off-by: Ishita Sequeira <ishiseq29@gmail.com>
Diffstat (limited to 'registry-scanner/test/testdata/scripts')
| -rwxr-xr-x | registry-scanner/test/testdata/scripts/get-credentials-invalid.sh | 3 | ||||
| -rwxr-xr-x | registry-scanner/test/testdata/scripts/get-credentials-valid.sh | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/registry-scanner/test/testdata/scripts/get-credentials-invalid.sh b/registry-scanner/test/testdata/scripts/get-credentials-invalid.sh new file mode 100755 index 0000000..a6199f3 --- /dev/null +++ b/registry-scanner/test/testdata/scripts/get-credentials-invalid.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +echo "some gibberish foo"
\ No newline at end of file diff --git a/registry-scanner/test/testdata/scripts/get-credentials-valid.sh b/registry-scanner/test/testdata/scripts/get-credentials-valid.sh new file mode 100755 index 0000000..ba348ef --- /dev/null +++ b/registry-scanner/test/testdata/scripts/get-credentials-valid.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +echo "username:password"
\ No newline at end of file |
