Skip to content

Commit

Permalink
Merge pull request #202 from auscompgeek/deploy-skip-wpilog
Browse files Browse the repository at this point in the history
deploy: Ignore .wpilog files
  • Loading branch information
virtuald committed Mar 27, 2022
2 parents 7675622 + b3f45a0 commit 07ba9aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyfrc/mains/cli_deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ def _start_nc(self, ssh, options):
def _copy_to_tmpdir(self, tmp_dir, robot_path, dry_run=False):

upload_files = []
ignore_exts = {"pyc", "whl", "ipk", "zip", "gz"}
ignore_exts = frozenset({"pyc", "whl", "ipk", "zip", "gz", "wpilog"})

for root, dirs, files in os.walk(robot_path):
prefix = root[len(robot_path) + 1 :]
Expand Down

0 comments on commit 07ba9aa

Please sign in to comment.