diff options
author | Joerg Koenig <Joerg.Koenig@techsat.com> | 2019-05-22 10:06:31 (GMT) |
---|---|---|
committer | Joerg Koenig <Joerg.Koenig@techsat.com> | 2019-05-22 10:06:31 (GMT) |
commit | e26f6edcce128c76c2eb1a14751651660d6fa297 (patch) | |
tree | 2bfc562d1453d6a56f13b77a5812131700aa72d6 | |
parent | 871bd9f4e9bae4e5868abf86f5c5e0a26e7f4634 (diff) | |
download | Qt-e26f6edcce128c76c2eb1a14751651660d6fa297.zip Qt-e26f6edcce128c76c2eb1a14751651660d6fa297.tar.gz Qt-e26f6edcce128c76c2eb1a14751651660d6fa297.tar.bz2 |
Fixed foldernames and final dest dir
Change-Id: I36e37f0d104a48286c964a02ee8f3ba822a4d0c2
-rw-r--r-- | Jenkinsfile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index afcb617..b31e9ea 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -126,7 +126,9 @@ stage ("Post processing") { mkdir -p $WORKSPACE/INST/$QT_VER/x86-linux64 tar -xzf $WORKSPACE/qt-$QT_VER-x86-linux64.tgz -C $WORKSPACE/INST/$QT_VER/x86-linux64 rm -f $WORKSPACE/qt-$QT_VER-x86-linux64.tgz - mv $WORKSPACE/tmp/$QT_VER/* $WORKSPACE/INST/ + mv $WORKSPACE/tmp/$QT_VER/* $WORKSPACE/INST/$QT_VER/ + cd $WORKSPACE/INST && ln -s x86_64-msvc x86-mingw64 + cd $WORKSPACE/INST && ln -s x86-msvc x86-mingw32 # # remove temporary folder ... rm -Rf $WORKSPACE/tmp |