3
0
Fork 0
forked from mirrors/nixpkgs

scripts/pluginupdate: fix fetchgit indentation

This commit is contained in:
figsoda 2022-11-17 20:51:34 -05:00
parent 5271b56941
commit d8426de146

View file

@ -142,10 +142,10 @@ class Repo:
def as_nix(self, plugin: "Plugin") -> str:
return f'''fetchgit {{
url = "{self.uri}";
rev = "{plugin.commit}";
sha256 = "{plugin.sha256}";
}}'''
url = "{self.uri}";
rev = "{plugin.commit}";
sha256 = "{plugin.sha256}";
}}'''
class RepoGitHub(Repo):