You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

38 lines
1.4 KiB

Index: src/github.com/Azure/draft/Makefile
--- src/github.com/Azure/draft/Makefile.orig 2019-03-28 10:48:17.000000000 +0100
+++ src/github.com/Azure/draft/Makefile 2019-03-28 11:03:29.115628000 +0100
@@ -19,7 +19,7 @@
TESTS := .
TESTFLAGS :=
LDFLAGS :=
-GOFLAGS :=
+GOFLAGS := -v
GOXFLAGS :=
BINDIR := $(CURDIR)/bin
BINARIES := draft
Index: src/github.com/Azure/draft/vendor/github.com/Azure/azure-storage-blob-go/2016-05-31/azblob/mmf_unix.go
--- src/github.com/Azure/draft/vendor/github.com/Azure/azure-storage-blob-go/2016-05-31/azblob/mmf_unix.go.orig 2019-03-28 10:48:23.000000000 +0100
+++ src/github.com/Azure/draft/vendor/github.com/Azure/azure-storage-blob-go/2016-05-31/azblob/mmf_unix.go 2019-03-28 11:04:57.218479000 +0100
@@ -1,4 +1,4 @@
-// +build linux darwin
+// +build linux darwin freebsd
package azblob
Index: src/github.com/Azure/draft/versioning.mk
--- src/github.com/Azure/draft/versioning.mk.orig 2019-03-28 10:48:17.000000000 +0100
+++ src/github.com/Azure/draft/versioning.mk 2019-03-28 11:03:29.115747000 +0100
@@ -1,9 +1,9 @@
MUTABLE_VERSION ?= canary
-GIT_COMMIT := $(shell git rev-parse HEAD)
-GIT_SHA := $(shell git rev-parse --short HEAD)
-GIT_TAG := $(shell git describe --tags --abbrev=0 2>/dev/null)
-GIT_DIRTY = $(shell test -n "`git status --porcelain`" && echo "dirty" || echo "clean")
+GIT_COMMIT := 000000
+GIT_SHA := 000000
+GIT_TAG := master
+GIT_DIRTY = clean
ifdef VERSION
DOCKER_VERSION = $(VERSION)