You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The logic in buildpack.bash attempts to git ls-remote $url, and falls back to trying to pipe from curl into tar, with arguments based on file extension.
In my case, I was using a buildpack with a GitHub, but ls-remote failed due to a connectivity issue. The following case statement failed to match any extensions, leaving tar_args empty. Which caused tar to fail as tar without one of -Acdrtux is invalid.
The text was updated successfully, but these errors were encountered:
The logic in buildpack.bash attempts to
git ls-remote $url
, and falls back to trying to pipe fromcurl
intotar
, with arguments based on file extension.In my case, I was using a buildpack with a GitHub, but
ls-remote
failed due to a connectivity issue. The followingcase
statement failed to match any extensions, leavingtar_args
empty. Which causedtar
to fail astar
without one of-Acdrtux
is invalid.The text was updated successfully, but these errors were encountered: