Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
If the context directory was specified as a git repo with a branch reference ala ``` buildah bud --layers -t test git://github.com/containers/skopeo#master ``` The internal `git clone` command executed by buildah would fail as the `#master` branch specification needed to be removed and specified with the `-b` option like: ``` git clone -b master git://github.com/containers/skopeo /var/tmp/buildah12332 ``` rather than: ``` git clone git://github.com/containers/skopeo#master /var/tmp/buildah12332 ``` Addresses #1934 Signed-off-by: TomSweeneyRedHat <[email protected]> Closes: #1941 Approved by: rhatdan
- Loading branch information