0
0
mirror of https://github.com/cucumber-sp/yandex-music-linux.git synced 2024-12-23 22:22:59 +03:00

Merge pull request #37 from ein-shved/master

[update/flake] Fix flake.lock update periodicity
This commit is contained in:
Andrey Onishchenko 2024-02-09 13:53:36 +03:00 committed by GitHub
commit 508d987d1d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -73,7 +73,10 @@ update_pkbuild() {
update_flake() { update_flake() {
sed -i 's#\(ymExe\.url\s*=\s*\).*;#\1'"$exe_link"';#' ./flake.nix sed -i 's#\(ymExe\.url\s*=\s*\).*;#\1'"$exe_link"';#' ./flake.nix
if check_dep nix; then if check_dep nix; then
nix --extra-experimental-features 'nix-command flakes' flake update nix --extra-experimental-features 'nix-command flakes' flake lock update --update-input ymExe
if [[ $(git status --porcelain) ]]; then
nix --extra-experimental-features 'nix-command flakes' flake update
fi
else else
echo "flake.nix was updated, but nix is not installed to update flake.lock" echo "flake.nix was updated, but nix is not installed to update flake.lock"
fi fi