summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@qt.io>2017-02-06 10:28:48 +0200
committerSamuli Piippo <samuli.piippo@qt.io>2017-02-07 08:16:20 +0000
commit7ba2b7099f526203d2a904afd7a7f1779185f928 (patch)
treec6dd8f72533944f616c0d710fbc5a01b6e8ba58b
parentb808f7785a43e046a6ce33af67298e273bc18336 (diff)
downloadmeta-boot2qt-7ba2b7099f526203d2a904afd7a7f1779185f928.tar.gz
configure-qtcreator: suppress unnecessary error
sdktool outputs "Error: Id was not found." when trying to remove debugger id that doesn't exists. Change-Id: I6ebb700e8b785b9309835cb5fba501db56f65084 Reviewed-by: Mikko Gronoff <mikko.gronoff@qt.io>
-rwxr-xr-xscripts/configure-qtcreator.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/configure-qtcreator.sh b/scripts/configure-qtcreator.sh
index 0ebbe55..35b08b4 100755
--- a/scripts/configure-qtcreator.sh
+++ b/scripts/configure-qtcreator.sh
@@ -99,7 +99,7 @@ ${SDKTOOL} rmKit --id ${BASEID}.kit 2>/dev/null || true
99${SDKTOOL} rmQt --id ${BASEID}.qt || true 99${SDKTOOL} rmQt --id ${BASEID}.qt || true
100${SDKTOOL} rmTC --id ProjectExplorer.ToolChain.Gcc:${BASEID}.gcc || true 100${SDKTOOL} rmTC --id ProjectExplorer.ToolChain.Gcc:${BASEID}.gcc || true
101${SDKTOOL} rmTC --id ProjectExplorer.ToolChain.Gcc:${BASEID}.g++ || true 101${SDKTOOL} rmTC --id ProjectExplorer.ToolChain.Gcc:${BASEID}.g++ || true
102${SDKTOOL} rmDebugger --id ${BASEID}.gdb || true 102${SDKTOOL} rmDebugger --id ${BASEID}.gdb 2>/dev/null || true
103 103
104if [ -n "${REMOVEONLY}" ]; then 104if [ -n "${REMOVEONLY}" ]; then
105 echo "Kit removed: ${NAME}" 105 echo "Kit removed: ${NAME}"