From 37a11807d1fb466d19f75e099c6f6b67ef4d697d Mon Sep 17 00:00:00 2001 From: Jon Ayers Date: Fri, 10 May 2024 20:13:04 +0000 Subject: [PATCH] fix: fix nix flake sed command --- scripts/update-flake.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update-flake.sh b/scripts/update-flake.sh index 4094f20032611..67aca5e79a09a 100755 --- a/scripts/update-flake.sh +++ b/scripts/update-flake.sh @@ -13,4 +13,4 @@ echo "Calculating SRI hash..." HASH=$(go run tailscale.com/cmd/nardump --sri "$OUT/pkg/mod/cache/download") sudo rm -rf "$OUT" -sed -i "s/\(vendorHash = \"\)[^\"]*/\1${HASH}/" ./flake.nix +sed -i "s#\(vendorHash = \"\)[^\"]*#\1${HASH}#" ./flake.nix