From d9515b208c17f9c892220166ecc9c6a8166bea06 Mon Sep 17 00:00:00 2001 From: Kevin Quick Date: Sun, 9 Sep 2018 22:08:06 -0700 Subject: [PATCH] Update prompt for Local path input to indicate a URL is also valid. The PathInput input for local paths was previously enhanced to allow URLs for which it would use a nix-prefetch-url operation. This change updates the prompt for the declarative input type to indicate this capability. --- src/lib/Hydra/Plugin/PathInput.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/Hydra/Plugin/PathInput.pm b/src/lib/Hydra/Plugin/PathInput.pm index 551fc94a..7aa7c764 100644 --- a/src/lib/Hydra/Plugin/PathInput.pm +++ b/src/lib/Hydra/Plugin/PathInput.pm @@ -8,7 +8,7 @@ use Nix::Store; sub supportedInputTypes { my ($self, $inputTypes) = @_; - $inputTypes->{'path'} = 'Local path'; + $inputTypes->{'path'} = 'Local path or URL'; } sub fetchInput {