Skip to content
Snippets Groups Projects
Commit ca0701a2 authored by Philipp Stadler's avatar Philipp Stadler
Browse files

chore: remove download prefix and work with relative paths

parent aa9201d1
No related branches found
No related tags found
1 merge request!136chore: remove download prefix and work with relative paths
Pipeline #13788 passed
......@@ -10,6 +10,6 @@ $(ANNOUNCEMENT_FILE): $(ANNOUNCE) $(PYTHON_NEEDED) build/export_apkgs.py
--out $@ \
--title '$(PACK_TITLE)' \
--repo $(GITLAB_REPO) \
--releaseDir $(DOWNLOAD_PREFIX)$(RELEASE_DIR) \
--releaseDir $(RELEASE_DIR) \
$(addprefix --apkg , \
$(patsubst %,'%',$(APKGS)))
......@@ -6,7 +6,8 @@ K := $(foreach exec,$(REQUIRED_ON_PATH), \
# root like in CI, otherwise all generated files are in artifacts/
# note that using . and ./ behave the same as the empty string and the filename
# targets will not start with .
BUILD_PREFIX ?= $(PWD)/artifacts
BUILD_PREFIX ?= artifacts
# make empty or add trailing slash
BUILD_PREFIX := $(and $(filter-out . ./,$(BUILD_PREFIX)),$(BUILD_PREFIX)/)
# some build subprocesses need this, e.g. the JS proxy for parcel needs to
# know where to load the chardata from
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment