aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-12-13 14:08:52 +0100
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-12-13 14:08:52 +0100
commitc6a8e02673480cf40d5da898a941b7fd21643ba6 (patch)
tree9fc1befc9f9f6bf8daa49d27789b33d4f97af8ea
parent15ff4cfc2af131359fa047a3e5d28a4bee1c23c3 (diff)
downloadallocbench-c6a8e02673480cf40d5da898a941b7fd21643ba6.tar.gz
allocbench-c6a8e02673480cf40d5da898a941b7fd21643ba6.zip
always output if we retrieve aqn artifact
-rw-r--r--src/artifact.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/artifact.py b/src/artifact.py
index 829d6f4..0e3f956 100644
--- a/src/artifact.py
+++ b/src/artifact.py
@@ -26,7 +26,7 @@ import os
import subprocess
import src.globalvars
-from src.util import print_info, print_debug, sha1sum
+from src.util import print_status, print_info, print_debug, sha1sum
ARTIFACT_STORE_DIR = os.path.join(src.globalvars.allocbenchdir, "cache")
@@ -47,7 +47,7 @@ class Artifact:
"""Run cmd to retrieve the artifact"""
os.makedirs(self.basedir, exist_ok=True)
- print_info(f'Retrieving artifact "{self.name}"')
+ print_status(f'Retrieving artifact "{self.name}" ...')
print_debug(f"By running: {cmd} in {self.basedir}")
proc = subprocess.run(
cmd,