From 7f8d4ac3d200afdf421b705076f888ba25641981 Mon Sep 17 00:00:00 2001 From: pigeons Date: Mon, 16 Jan 2017 09:37:12 -0800 Subject: [PATCH] exit script with appropriate status if these commands fail --- linuxdeploy_helper.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/linuxdeploy_helper.sh b/linuxdeploy_helper.sh index 37f1e59e..49f68b81 100755 --- a/linuxdeploy_helper.sh +++ b/linuxdeploy_helper.sh @@ -11,12 +11,12 @@ platform=$(get_platform) # Copy dependencies EXCLUDE='libstdc++|libgcc_s.so|libc.so|libpthread' -cp -rv /usr/lib/x86_64-linux-gnu/qt5/qml $TARGET -cp -rv /usr/lib/x86_64-linux-gnu/qt5/plugins $TARGET -mkdir -p $TARGET/libs -ldd $TARGET/$GUI_EXEC | grep "=> /" | awk '{print $3}' | grep -Ev $EXCLUDE | xargs -I '{}' cp -v '{}' $TARGET/libs -ldd $TARGET/plugins/platforms/libqxcb.so| grep "=> /" | awk '{print $3}' | grep -Ev $EXCLUDE | xargs -I '{}' cp -v '{}' $TARGET/libs -cp -v /usr/lib/x86_64-linux-gnu/libQt5XmlPatterns.so.5 $TARGET/libs +cp -rv /usr/lib/x86_64-linux-gnu/qt5/qml $TARGET || exit +cp -rv /usr/lib/x86_64-linux-gnu/qt5/plugins $TARGET || exit +mkdir -p $TARGET/libs || exit +ldd $TARGET/$GUI_EXEC | grep "=> /" | awk '{print $3}' | grep -Ev $EXCLUDE | xargs -I '{}' cp -v '{}' $TARGET/libs || exit +ldd $TARGET/plugins/platforms/libqxcb.so| grep "=> /" | awk '{print $3}' | grep -Ev $EXCLUDE | xargs -I '{}' cp -v '{}' $TARGET/libs || exit +cp -v /usr/lib/x86_64-linux-gnu/libQt5XmlPatterns.so.5 $TARGET/libs || exit # Create start script cat > $TARGET/start-gui.sh <