Skip to content

Commit

Permalink
build: remove problematic recurse flag from make_package.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhendrickson13 committed Sep 20, 2024
1 parent fe06073 commit d4bc0b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/make_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ def run_ssh_cmd(self, cmd):
ssh_cmd = ["ssh", f"{self.args.username}@{self.args.host}", cmd]
return subprocess.call(ssh_cmd, shell=False)

def run_scp_cmd(self, src, dst, recurse=False):
def run_scp_cmd(self, src, dst):
"""Formats the SCP command to use when copying over the built package."""
scp_cmd = ["scp", "-r" if recurse else "", src, dst]
scp_cmd = ["scp", src, dst]
return subprocess.call(scp_cmd, shell=False)

def build_package(self, pkg_dir):
Expand Down

0 comments on commit d4bc0b3

Please sign in to comment.