From e3b13f16bfc543ffe98fac6b84b309fc8bf719ff Mon Sep 17 00:00:00 2001 From: jannfis Date: Mon, 23 Nov 2020 20:02:48 +0100 Subject: 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 --- test/testdata/scripts/get-credentials-invalid.sh | 3 +++ test/testdata/scripts/get-credentials-valid.sh | 3 +++ 2 files changed, 6 insertions(+) create mode 100755 test/testdata/scripts/get-credentials-invalid.sh create mode 100755 test/testdata/scripts/get-credentials-valid.sh (limited to 'test/testdata/scripts') 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 -- cgit v1.2.3