Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.

Commit e70f8ee

Browse files
committed
Fix double eval
1 parent 10ebb65 commit e70f8ee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- run:
3434
command: |
3535
go get github.com/tcnksm/ghr
36-
export VERSION=$(`cat VERSION`-`git rev-parse --short HEAD`)
36+
export VERSION=`cat VERSION`-`git rev-parse --short HEAD`
3737
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -delete ${VERSION} ./bin/
3838
3939
workflows:

0 commit comments

Comments
 (0)