diff options
-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 |