Skip to content

Commit

Permalink
Code review
Browse files Browse the repository at this point in the history
  • Loading branch information
pjreiniger committed Jul 17, 2024
1 parent f6f097f commit 6468163
Showing 1 changed file with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
#!/usr/bin/env python3

import os
import re
import shutil

from upstream_utils import (
get_repo_root,
clone_repo,
comment_out_invalid_includes,
walk_cwd_and_copy_if,
git_am,
walk_if,
Lib,
)
Expand Down Expand Up @@ -72,11 +67,11 @@ def copy_upstream_src(wpilib_root):
def main():
name = "googletest"
url = "https://github.com/google/googletest.git"
commitish = "v1.14.0"
tag = "v1.14.0"

patch_list = []

googletest = Lib(name, url, commitish, patch_list, copy_upstream_src)
googletest = Lib(name, url, tag, patch_list, copy_upstream_src)
googletest.main()


Expand Down

0 comments on commit 6468163

Please sign in to comment.