Skip to content

Commit bcd3f6d

Browse files
committed
.circleci: Remove quotes from --git-dir
git doesn't handle the escapes correctly so let's just not put them altogether. Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
1 parent 0b3d2f7 commit bcd3f6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.circleci/scripts/binary_populate_env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ BASE_BUILD_VERSION="1.5.0.dev$DATE"
5151
# Change BASE_BUILD_VERSION to git tag when on a git tag
5252
# Use 'git -C' to make doubly sure we're in the correct directory for checking
5353
# the git tag
54-
GIT_DESCRIBE="git --git-dir '${workdir}/pytorch/.git' describe"
54+
GIT_DESCRIBE="git --git-dir ${workdir}/pytorch/.git describe"
5555
if ${GIT_DESCRIBE} --tags --exact >/dev/null; then
5656
# Switch upload folder to 'test/' if we are on a tag
5757
PIP_UPLOAD_FOLDER='test/'

0 commit comments

Comments
 (0)