Skip to content

Commit c8ffdae

Browse files
committed
TUN-8146: Fix Makefile targets should not be run in parallel and install-go script was missing shebang
1 parent 8fc8c17 commit c8ffdae

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.teamcity/install-cloudflare-go.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# !/usr/bin/env bash
2+
13
cd /tmp
24
git clone -q https://github.com/cloudflare/go
35
cd go/src

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# The targets cannot be run in parallel
2+
.NOTPARALLEL:
3+
14
VERSION := $(shell git describe --tags --always --match "[0-9][0-9][0-9][0-9].*.*")
25
MSI_VERSION := $(shell git tag -l --sort=v:refname | grep "w" | tail -1 | cut -c2-)
36
#MSI_VERSION expects the format of the tag to be: (wX.X.X). Starts with the w character to not break cfsetup.

0 commit comments

Comments
 (0)