This repository was archived by the owner on Apr 25, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ export BUILD_WITH_CONTAINER ?= 0
32
32
33
33
ifeq ($(BUILD_WITH_CONTAINER ) ,1)
34
34
35
- $(shell $(PWD )/common/scripts/setup_env.sh)
35
+ $(shell $(shell pwd )/common/scripts/setup_env.sh)
36
36
37
37
RUN = ./common/scripts/run.sh
38
38
54
54
# If we are not in build container, we need a workaround to get environment properly set
55
55
# Write to file, then include
56
56
$(shell mkdir -p out)
57
- $(shell $(PWD )/common/scripts/setup_env.sh envfile > out/.env)
57
+ $(shell $(shell pwd )/common/scripts/setup_env.sh envfile > out/.env)
58
58
include out/.env
59
- export out/.env
59
+ export
60
60
61
61
export GOBIN ?= $(GOPATH ) /bin
62
62
include Makefile.core.mk
Original file line number Diff line number Diff line change 1
- 70f2f420e00779b4e576825280d572ff1d295b48
1
+ 4847adb64dd63db27b2ea0dad35054aca5c5c52f
Original file line number Diff line number Diff line change @@ -66,8 +66,8 @@ export DOCKER_GID
66
66
TIMEZONE=$( readlink $readlink_flags /etc/localtime | sed -e ' s/^.*zoneinfo\///' )
67
67
export TIMEZONE
68
68
69
- export TARGET_OUT=" ${TARGET_OUT:- ${PWD} / out/ ${TARGET_OS} _${TARGET_ARCH} } "
70
- export TARGET_OUT_LINUX=" ${TARGET_OUT_LINUX:- ${PWD} / out/ linux_amd64} "
69
+ export TARGET_OUT=" ${TARGET_OUT:- $(pwd) / out/ ${TARGET_OS} _${TARGET_ARCH} } "
70
+ export TARGET_OUT_LINUX=" ${TARGET_OUT_LINUX:- $(pwd) / out/ linux_amd64} "
71
71
72
72
export CONTAINER_TARGET_OUT=" ${CONTAINER_TARGET_OUT:-/ work/ out/ ${TARGET_OS} _${TARGET_ARCH} } "
73
73
export CONTAINER_TARGET_OUT_LINUX=" ${CONTAINER_TARGET_OUT_LINUX:-/ work/ out/ linux_amd64} "
You can’t perform that action at this time.
0 commit comments