Also add change for rust

This commit is contained in:
notplants 2021-03-22 11:41:15 +01:00
parent be09c4afaf
commit e96bfe9777
1 changed files with 2 additions and 2 deletions

View File

@ -36,8 +36,8 @@ def build_rust_packages(default_branch=False):
cwd=service_path).decode(sys.stdout.encoding)
branch = default_branch.replace('origin/', '').strip()
subprocess.check_call(["git", "checkout", branch], cwd=service_path)
subprocess.check_call(["git", "reset", "HEAD", "--hard"], cwd=service_path)
subprocess.check_call(["git", "pull"], cwd=service_path)
subprocess.check_call(["git", "fetch", "--all"], cwd=service_path)
subprocess.check_call(["git", "reset", "--hard", default_branch], cwd=service_path)
debian_package_path = subprocess.check_output(
[
CARGO_PATH,