diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-09-30 17:52:57 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-09-30 17:52:57 +0200 |
commit | 2ceda34c129d425f239ecb29177fb1b54f045543 (patch) | |
tree | a32f25e04cb8e5776a3ec0179dd5d82f86d30d78 /build/rust/init | |
parent | fix(common/init): Only build the `out` output; exclude the `man` output (diff) | |
download | flake-templates-0.7.2.tar.gz flake-templates-0.7.2.zip |
chore(version): v0.7.2 v0.7.2
Diffstat (limited to 'build/rust/init')
-rw-r--r-- | build/rust/init | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/rust/init b/build/rust/init index 2c9c077..104bd30 100644 --- a/build/rust/init +++ b/build/rust/init @@ -27,7 +27,7 @@ require() { fi } die() { - echo "$1" + printf "init: ERROR: %s\n" "$1" exit 1 } @@ -171,7 +171,7 @@ chmod +x update.sh [ -f ./watch.sh ] && chmod +x build.sh # Do the first run of reuse annotate -reuse="$(nix build nixpkgs#reuse --no-link --print-out-paths)/bin/reuse" +reuse="$(nix build nixpkgs#reuse.out --no-link --print-out-paths)/bin/reuse" [ "$(echo "$reuse" | wc -l)" -ne 1 ] && die "Something is wrong with the nixpkgs#reuse derivation" git add . |