Commit 952d56ad6a9d007e5d7d44fbfc6dd67c13b11b17

Authored by Jacob Vosmaer
1 parent e8101776

Include the platform version in the directory name

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
@@ -2,7 +2,7 @@ PROJECT=gitlab @@ -2,7 +2,7 @@ PROJECT=gitlab
2 RELEASE_BUCKET=downloads-packages 2 RELEASE_BUCKET=downloads-packages
3 RELEASE_BUCKET_REGION=eu-west-1 3 RELEASE_BUCKET_REGION=eu-west-1
4 SECRET_DIR:=$(shell openssl rand -hex 20) 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 build: 7 build:
8 OMNIBUS_APPEND_TIMESTAMP=0 bin/omnibus build project ${PROJECT} 8 OMNIBUS_APPEND_TIMESTAMP=0 bin/omnibus build project ${PROJECT}