forked from lix-project/hydra
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.
This commit is contained in:
parent
b7c42a38a3
commit
d9515b208c
|
@ -8,7 +8,7 @@ use Nix::Store;
|
||||||
|
|
||||||
sub supportedInputTypes {
|
sub supportedInputTypes {
|
||||||
my ($self, $inputTypes) = @_;
|
my ($self, $inputTypes) = @_;
|
||||||
$inputTypes->{'path'} = 'Local path';
|
$inputTypes->{'path'} = 'Local path or URL';
|
||||||
}
|
}
|
||||||
|
|
||||||
sub fetchInput {
|
sub fetchInput {
|
||||||
|
|
Loading…
Reference in a new issue