# Test credential helper execution # Create a mock credential helper that logs when it's called -- docker-credential-mock -- #!/bin/sh # Mock credential helper that logs execution and returns test credentials # Log that we were called echo "MOCK_HELPER_CALLED" >&2 case "$1" in get) # Read registry from stdin read registry echo "MOCK_HELPER_REGISTRY=$registry" >&2 # Return credentials cat <