Skip to content

Commit

Permalink
--no-copy-directory -> --no-target-directory
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Lam <[email protected]>
  • Loading branch information
lamcw authored and jsharpe committed Aug 8, 2024
1 parent 6c98988 commit 164d5a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ fi
)

def copy_dir_contents_to_dir(source, target):
# Beause FreeBSD `cp` doesn't have `--no-copy-directory`, we have to
# Beause FreeBSD `cp` doesn't have `--no-target-directory`, we have to
# do something more complex for this environment.
return """\
if [[ -d "{source}" ]]; then
Expand Down
2 changes: 1 addition & 1 deletion foreign_cc/private/framework/toolchains/macos_commands.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ fi
)

def copy_dir_contents_to_dir(source, target):
# Beause macos `cp` doesn't have `--no-copy-directory`, we have to
# Beause macos `cp` doesn't have `--no-target-directory`, we have to
# do something more complext for this environment.
return """\
if [[ -d "{source}" ]]; then
Expand Down

0 comments on commit 164d5a8

Please sign in to comment.