mirror of
git://code.qt.io/qt/qt5.git
synced 2026-03-23 23:01:38 +08:00
Provisioning: Ignore unmount result with Squish script
Unmounting fails sometimes which cause provisoning failure. Let's ignore the result Task-number: QTQAINFRA-3709 Pick-to: 6.6 6.5 6.2 5.15 Change-Id: Ifc321c8ef9942f9f51ec622370aadbbbb862d262 Reviewed-by: Jukka Jokiniva <jukka.jokiniva@qt.io>
This commit is contained in:
committed by
Jukka Jokiniva
parent
c230f55f20
commit
2ae9a6c099
@@ -63,7 +63,7 @@ echo "Uncompress $compressedFolder"
|
||||
sudo tar -xzf "$targetFileMount" --directory "$installFolder"
|
||||
|
||||
echo "Unmounting $mountFolder"
|
||||
sudo diskutil unmount force "$mountFolder" || sudo umount -f "$mountFolder"
|
||||
sudo diskutil unmount force "$mountFolder" || sudo umount -f "$mountFolder" || true
|
||||
|
||||
sudo mv "$installFolder/rta_squish_$qtBranch" "$squishFolder"
|
||||
if uname -a |grep -q Darwin; then
|
||||
|
||||
Reference in New Issue
Block a user