aboutsummaryrefslogtreecommitdiffhomepage
path: root/nix
diff options
context:
space:
mode:
authorsolopasha <[email protected]>2023-06-15 17:19:28 +0300
committerMihai Fufezan <[email protected]>2023-06-15 23:32:52 +0300
commit1d902a4621b3d952c1e8dff959e9489239b6995f (patch)
treebb0c824957fe62fd654eb77cca39231779accf42 /nix
parent302ec1372c40cd4130101920c2f6c38cad6fc9dc (diff)
downloadHyprland-1d902a4621b3d952c1e8dff959e9489239b6995f.tar.gz
Hyprland-1d902a4621b3d952c1e8dff959e9489239b6995f.zip
fix updating revision in wlroots.wrap
revision gets updated to the previous one, not current.
Diffstat (limited to 'nix')
-rwxr-xr-xnix/update-inputs.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/update-inputs.sh b/nix/update-inputs.sh
index 6db18606..b5aeff2e 100755
--- a/nix/update-inputs.sh
+++ b/nix/update-inputs.sh
@@ -18,7 +18,7 @@ if [ "$SUB_REV" != "$CRT_REV" ]; then
jq <flake.lock 'del(.nodes.wlroots.original.rev)' | sponge flake.lock
# fix revision in wlroots.wrap
- sed -Ei "s/[a-z0-9]{40}/$CRT_REV/g" subprojects/wlroots.wrap
+ sed -Ei "s/[a-z0-9]{40}/$SUB_REV/g" subprojects/wlroots.wrap
else
echo "wlroots is up to date!"
fi