diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-04-08 12:09:40 +0000 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-04-08 12:09:40 +0000 |
commit | 92805ae06758e6b7558cd61a5b890014331fc893 (patch) | |
tree | 0bab4f87a9619dc78ea18496a3790e0568b21ff9 /.tools/init.sh | |
parent | 3ae369e92ca8aa0961b3013fb8136ed90d42d297 (diff) | |
download | clientdata-92805ae06758e6b7558cd61a5b890014331fc893.tar.gz clientdata-92805ae06758e6b7558cd61a5b890014331fc893.tar.bz2 clientdata-92805ae06758e6b7558cd61a5b890014331fc893.tar.xz clientdata-92805ae06758e6b7558cd61a5b890014331fc893.zip |
Allow repository to have any name, without causing pipelines to fail.
Diffstat (limited to '.tools/init.sh')
-rwxr-xr-x | .tools/init.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.tools/init.sh b/.tools/init.sh index 4fe533ef..6bd46c05 100755 --- a/.tools/init.sh +++ b/.tools/init.sh @@ -85,6 +85,6 @@ function aptget_install { function clientdata_init { mkdir shared cd .. - ln -s clientdata client-data + ln -s ${CI_PROJECT_NAME:=clientdata} client-data check_error $? } |