Skip to content
Snippets Groups Projects
Unverified Commit 701ad717 authored by Bryan Liles's avatar Bryan Liles Committed by GitHub
Browse files

Merge pull request #249 from bryanl/make-custom-version

Allow make file to generate ks bin with custom version and name
parents 7715dd75 024ae86b
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
VERSION = dev-$(shell date +%FT%T%z)
VERSION?=dev-$(shell date +%FT%T%z)
KS_BIN?=ks
GO = go
EXTRA_GO_FLAGS =
......@@ -37,7 +38,7 @@ INTEGRATION_TEST_FIXTURES = ./fixtures
all: ks docs
ks:
$(GO) build -o ks $(GO_FLAGS) .
$(GO) build -o $(KS_BIN) $(GO_FLAGS) .
docs:
$(DOC_GEN_FILE)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment