Skip to content

Commit b3f45a0

Browse files
committed
deploy: Ignore .wpilog files
1 parent 7675622 commit b3f45a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyfrc/mains/cli_deploy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ def _start_nc(self, ssh, options):
512512
def _copy_to_tmpdir(self, tmp_dir, robot_path, dry_run=False):
513513

514514
upload_files = []
515-
ignore_exts = {"pyc", "whl", "ipk", "zip", "gz"}
515+
ignore_exts = frozenset({"pyc", "whl", "ipk", "zip", "gz", "wpilog"})
516516

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

0 commit comments

Comments
 (0)