diff options
| author | jannfis <jann@mistrust.net> | 2020-11-23 20:02:48 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-23 20:02:48 +0100 |
| commit | e3b13f16bfc543ffe98fac6b84b309fc8bf719ff (patch) | |
| tree | d8311564105e01002bdb053a89b1b9c0c80ac812 /test | |
| parent | 6723a25cfcd3f117f0d234b5449db7a6cc68bc2d (diff) | |
feat: Support for getting pull creds from external scripts (#121)
* feat: Support for getting pull creds from external scripts
* spelling
* be more verbose on error
Diffstat (limited to 'test')
| -rwxr-xr-x | test/testdata/scripts/get-credentials-invalid.sh | 3 | ||||
| -rwxr-xr-x | test/testdata/scripts/get-credentials-valid.sh | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/test/testdata/scripts/get-credentials-invalid.sh b/test/testdata/scripts/get-credentials-invalid.sh new file mode 100755 index 0000000..a6199f3 --- /dev/null +++ b/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/test/testdata/scripts/get-credentials-valid.sh b/test/testdata/scripts/get-credentials-valid.sh new file mode 100755 index 0000000..ba348ef --- /dev/null +++ b/test/testdata/scripts/get-credentials-valid.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +echo "username:password"
\ No newline at end of file |
