aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/artifact.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/artifact.py b/src/artifact.py
index 6f8b871..4b4454d 100644
--- a/src/artifact.py
+++ b/src/artifact.py
@@ -72,7 +72,7 @@ class GitArtifact(Artifact):
# check if we have already provided this checkout
if os.path.exists(location):
try:
- run_cmd(["git", "fetch"], output_verbosity=1, cwd=location)
+ run_cmd(["git", "fetch", "--force"], output_verbosity=1, cwd=location)
except CalledProcessError:
print_error(f"Failed to update {location}")
raise