From 8f4b783e1ee483246b312930f6519fc44e588f5f Mon Sep 17 00:00:00 2001 From: Andrew Hamilton Date: Fri, 26 Nov 2021 10:19:40 +1000 Subject: [PATCH] List dependencies in consistent order. --- install-tools | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-tools b/install-tools index c299b37..cbef38c 100755 --- a/install-tools +++ b/install-tools @@ -7,4 +7,4 @@ import eris.tools subprocess.run(["sudo", "apt-get", "-y", "install"] + - list(eris.tools.dependencies()), check=True) + sorted(eris.tools.dependencies()), check=True)