Merge pull request #179740 from romildo/fix.generic-updater
generic-updater: fix nix edit command line
This commit is contained in:
commit
0738126ae5
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ let
|
||||||
if [ -n "$latest_tag" ]; then
|
if [ -n "$latest_tag" ]; then
|
||||||
# print commands to commit the changes
|
# print commands to commit the changes
|
||||||
if [ "$version" != "$latest_tag" ]; then
|
if [ "$version" != "$latest_tag" ]; then
|
||||||
pfile=$(EDITOR=echo ${nix}/bin/nix edit -f. "$attr_path")
|
pfile=$(EDITOR=echo ${nix}/bin/nix edit --extra-experimental-features nix-command -f. "$attr_path")
|
||||||
echo " git add $pfile " >> ${fileForGitCommands}
|
echo " git add $pfile " >> ${fileForGitCommands}
|
||||||
echo " git commit -m '$attr_path: $version -> $latest_tag'" >> ${fileForGitCommands}
|
echo " git commit -m '$attr_path: $version -> $latest_tag'" >> ${fileForGitCommands}
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue