Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ PodsHost/
*.xcworkspace
PodToBUILD.zip
.DS_Store
.vscode
2 changes: 1 addition & 1 deletion bin/update_pods.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def _link_local_repo(repository_ctx, target_name, url):
cd = repository_ctx.GetPodRootDir()
from_dir = url + "/"
to_dir = cd + "/"
all_files = _exec(repository_ctx, ["ls", url]).split("\n")
all_files = _exec(repository_ctx, ["ls", url]).decode().split("\n")
# Link all of the files at the root directly
# ln -s url/* doesn't work.
for repo_file in all_files:
Expand Down