Skip to content

Commit

Permalink
Fix path (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
osterman authored May 2, 2018
1 parent 29b17f4 commit 98b8dc8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export BUILD_HARNESS_PATH ?= $(shell 'pwd')
export OS ?= $(shell uname -s | tr '[:upper:]' '[:lower:]')
export SELF ?= make
export PATH := $(BUILD_HARNESS_PATH)/vendor:$(PATH)

# Import Makefiles into current context
include $(BUILD_HARNESS_PATH)/Makefile.*
Expand Down
4 changes: 2 additions & 2 deletions modules/chamber/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CURL := $(shell which curl)
CURL ?= curl
CHAMBER_VERSION ?= 2.0.0
CHAMBER := $(shell which chamber)
CHAMBER ?= chamber

## Install chamber
chamber/install: packages/install/chamber
Expand Down
9 changes: 4 additions & 5 deletions modules/helm/Makefile
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
CURL := $(shell which curl)
CURL ?= curl
export HELM_VERSION ?= 2.9.0
HELM_PLATFORM ?= $(OS)-amd64
HELM := $(shell which helm)
HELM ?= helm
HELM_HOME ?= $(HOME)/.helm

HELM_REPO_PATH ?= ./$(REPO_NAME)
HELM_PACKAGE_PATH ?= ./packages/$(REPO_NAME)

## Install helm
helm/install: packages/install/helm packages/install/yq
@helm init --client-only
@$(HELM) init --client-only
@chmod -R 777 "$(HELM_HOME)"
@helm repo remove local || true
@$(HELM) repo remove local || true

## Build index for serve helm charts
helm/serve/index:
Expand Down
4 changes: 2 additions & 2 deletions modules/helmfile/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CURL := $(shell which curl)
CURL ?= curl
HELMFILE_VERSION ?= 0.12.0
HELMFILE := $(shell which helm)
HELMFILE ?= helmfile

## Install helmfile
helmfile/install: packages/install/helmfile packages/install/kubectl packages/install/helm
Expand Down

0 comments on commit 98b8dc8

Please sign in to comment.