diff --git a/.gitignore b/.gitignore index 4b1ed98..6a193e0 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ PodsHost/ *.xcworkspace PodToBUILD.zip .DS_Store +.vscode diff --git a/bin/update_pods.py b/bin/update_pods.py index 533588f..1e2034b 100755 --- a/bin/update_pods.py +++ b/bin/update_pods.py @@ -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: