Skip to content

Commit

Permalink
TUN-8146: Fix Makefile targets should not be run in parallel and inst…
Browse files Browse the repository at this point in the history
…all-go script was missing shebang
  • Loading branch information
chungthuang committed Jan 11, 2024
1 parent 8fc8c17 commit c8ffdae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .teamcity/install-cloudflare-go.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# !/usr/bin/env bash

cd /tmp
git clone -q https://github.com/cloudflare/go
cd go/src
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# The targets cannot be run in parallel
.NOTPARALLEL:

VERSION := $(shell git describe --tags --always --match "[0-9][0-9][0-9][0-9].*.*")
MSI_VERSION := $(shell git tag -l --sort=v:refname | grep "w" | tail -1 | cut -c2-)
#MSI_VERSION expects the format of the tag to be: (wX.X.X). Starts with the w character to not break cfsetup.
Expand Down

0 comments on commit c8ffdae

Please sign in to comment.