From 7ab4a0953bd31aab05a39ad440d123a6e0f22f75 Mon Sep 17 00:00:00 2001 From: Jorin Vogel Date: Wed, 14 Dec 2016 00:07:24 +0100 Subject: [PATCH] add license to releases also make it lowercase --- LICENSE => license | 0 readme.md | 2 +- release.sh | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename LICENSE => license (100%) diff --git a/LICENSE b/license similarity index 100% rename from LICENSE rename to license diff --git a/readme.md b/readme.md index 4d81855..3f6eefc 100644 --- a/readme.md +++ b/readme.md @@ -89,4 +89,4 @@ Run `./release.sh ` and upload the binaries on Github. ## License -[MIT](./LICENSE) +[MIT](./license) diff --git a/release.sh b/release.sh index 51a0d13..a87382f 100755 --- a/release.sh +++ b/release.sh @@ -17,7 +17,7 @@ build () { echo "Building ${BUILD}" GOOS=${OS} GOARCH=${ARCH} go build -v -o="${NAME}" -ldflags="-s -w" .. echo "Creating zip file ${ZIP}" - zip ${ZIP} ${NAME} ../readme.md + zip ${ZIP} ${NAME} ../readme.md ../license rm ${NAME} }