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: def as_nix(self, plugin: "Plugin") -> str:
return f'''fetchgit {{ return f'''fetchgit {{
url = "{self.uri}"; url = "{self.uri}";
rev = "{plugin.commit}"; rev = "{plugin.commit}";
sha256 = "{plugin.sha256}"; sha256 = "{plugin.sha256}";
}}''' }}'''
class RepoGitHub(Repo): class RepoGitHub(Repo):