From 9495c93a1e7ed11ee70452758bc45c450110dfe6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Tue, 17 Sep 2024 11:10:03 +0200 Subject: [PATCH] fix nix-shell shebang with old nix versions --- checks/linkcheck/lychee.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checks/linkcheck/lychee.sh b/checks/linkcheck/lychee.sh index 9fca97b..b335d4a 100755 --- a/checks/linkcheck/lychee.sh +++ b/checks/linkcheck/lychee.sh @@ -1,5 +1,5 @@ #! /usr/bin/env nix-shell -#! nix-shell -i bash -p 'python3.withPackages (ps: with ps; [ lxml ])' curl zstd bash findutils gnused coreutils lychee +#! nix-shell -i bash -p "python3.withPackages (ps: with ps; [ lxml ])" curl zstd bash findutils gnused coreutils lychee # shellcheck shell=bash SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)