From e80598cdfdde033efdc7b26c603b7646ea1c31ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Thu, 13 Oct 2022 11:33:10 +0200 Subject: shellrc-completion: fix invalid escaping --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 754df60..0ecb3f5 100644 --- a/flake.nix +++ b/flake.nix @@ -21,10 +21,10 @@ nativeBuildInputs = [ pkgs.installShellFiles ]; installPhase = '' for comp in bash-completion/*; do - installShellCompletion --bash --name "$${comp##*/}.bash" "$comp" + installShellCompletion --bash --name "''${comp##*/}.bash" "$comp" done for comp in zsh-completion/*; do - installShellCompletion --zsh --name "$${comp##*/}" "$comp" + installShellCompletion --zsh --name "''${comp##*/}" "$comp" done ''; }; -- cgit v1.2.3