diff options
author | Joerg Koenig <Joerg.Koenig@techsat.com> | 2019-05-23 08:12:06 (GMT) |
---|---|---|
committer | Joerg Koenig <Joerg.Koenig@techsat.com> | 2019-05-23 08:12:06 (GMT) |
commit | bc0b081c5b9c75a6737cce1404459172d36e879f (patch) | |
tree | 9f0e9cfd0211e7b50c4a6bdcc673615ec359f075 | |
parent | e26f6edcce128c76c2eb1a14751651660d6fa297 (diff) | |
download | Qt-bc0b081c5b9c75a6737cce1404459172d36e879f.zip Qt-bc0b081c5b9c75a6737cce1404459172d36e879f.tar.gz Qt-bc0b081c5b9c75a6737cce1404459172d36e879f.tar.bz2 |
Fixed foldernames and final dest dir
Change-Id: I96de0cc7628f4f30d77dfe65fe3c43363868ef9e
-rw-r--r-- | Jenkinsfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index b31e9ea..30f1c4e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -127,8 +127,8 @@ stage ("Post processing") { 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/$QT_VER/ - cd $WORKSPACE/INST && ln -s x86_64-msvc x86-mingw64 - cd $WORKSPACE/INST && ln -s x86-msvc x86-mingw32 + cd $WORKSPACE/INST/$QT_VER/ && ln -s x86_64-msvc x86-mingw64 + cd $WORKSPACE/INST/$QT_VER/ && ln -s x86-msvc x86-mingw32 # # remove temporary folder ... rm -Rf $WORKSPACE/tmp |