Skip to content

Commit

Permalink
Fix code
Browse files Browse the repository at this point in the history
  • Loading branch information
KangarooKoala committed Jul 15, 2024
1 parent 24a7425 commit 5c2b446
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion upstream_utils/update_mpack.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import os
import shutil
import subprocess
import tempfile

from upstream_utils import (
get_repo_root,
Expand Down Expand Up @@ -40,9 +41,9 @@ def clone(url, tag):
subprocess.run(["git", "switch", "--detach", tag])

def main():
wpilib_root = get_repo_root()
clone("https://github.com/ludocode/mpack", "v1.1.1")
upstream_root = os.getcwd()
wpilib_root = get_repo_root()
wpiutil = os.path.join(wpilib_root, "wpiutil")

# Apply patches to upstream Git repo
Expand Down

0 comments on commit 5c2b446

Please sign in to comment.