Commit 952d56ad6a9d007e5d7d44fbfc6dd67c13b11b17
1 parent
e8101776
Exists in
master
and in
13 other branches
Include the platform version in the directory name
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
Makefile
... | ... | @@ -2,7 +2,7 @@ PROJECT=gitlab |
2 | 2 | RELEASE_BUCKET=downloads-packages |
3 | 3 | RELEASE_BUCKET_REGION=eu-west-1 |
4 | 4 | SECRET_DIR:=$(shell openssl rand -hex 20) |
5 | -PLATFORM_DIR:=$(shell bin/ohai platform | ruby -rjson -e 'puts JSON.parse(ARGF.read).first') | |
5 | +PLATFORM_DIR:=$(shell ruby -rjson -e 'puts JSON.parse(`bin/ohai`).values_at("platform", "platform_version").join("-")') | |
6 | 6 | |
7 | 7 | build: |
8 | 8 | OMNIBUS_APPEND_TIMESTAMP=0 bin/omnibus build project ${PROJECT} | ... | ... |