Skip to content

Commit 1813540

Browse files
committed
trivial(Makefile): make base url independent
1 parent dbf9306 commit 1813540

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ NO_CLIENT_GD_PROJECTS_ABS = $(filter-out %client, $(wildcard $(CURDIR)/*gooddata
55
NO_CLIENT_GD_PROJECTS_DIRS = $(foreach dir, $(NO_CLIENT_GD_PROJECTS_ABS), $(notdir $(dir)))
66
# TODO: replace API_VERSION in the future by call to API
77
API_VERSION="v1"
8-
URL="http://localhost:3000/api/${API_VERSION}/schemas"
8+
BASE_URL="http://localhost:3000"
9+
URL="${BASE_URL}/api/${API_VERSION}/schemas"
910

1011
include ci_tests.mk
1112

0 commit comments

Comments
 (0)