diff options
author | solopasha <[email protected]> | 2023-06-15 17:19:28 +0300 |
---|---|---|
committer | Mihai Fufezan <[email protected]> | 2023-06-15 23:32:52 +0300 |
commit | 1d902a4621b3d952c1e8dff959e9489239b6995f (patch) | |
tree | bb0c824957fe62fd654eb77cca39231779accf42 | |
parent | 302ec1372c40cd4130101920c2f6c38cad6fc9dc (diff) | |
download | Hyprland-1d902a4621b3d952c1e8dff959e9489239b6995f.tar.gz Hyprland-1d902a4621b3d952c1e8dff959e9489239b6995f.zip |
fix updating revision in wlroots.wrap
revision gets updated to the previous one, not current.
-rwxr-xr-x | nix/update-inputs.sh | 2 |
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 |