Skip to content

Commit 37d96b4

Browse files
committed
add badge, rm verbose
1 parent 75940c9 commit 37d96b4

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ The Qt auto updater library is a library to automatically check for updates and
44
- A library with the basic updater (without any GUI)
55
- A second library that requires the first one and adds basic GUI features
66

7+
[![Travis Build Status](https://travis-ci.org/Skycoder42/QtAutoUpdater.svg?branch=master)](https://travis-ci.org/Skycoder42/QtAutoUpdater)
8+
[![Appveyor Build status](https://ci.appveyor.com/api/projects/status/5iw2byrvnsdfytxv?svg=true)](https://ci.appveyor.com/project/Skycoder42/qtautoupdater)
9+
10+
711
## Features
812
### Core Library
913
- Automatic Check for updates using the maintenancetool

tests/auto/autoupdatercore/UpdaterTest/installercontroller.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ void InstallerController::installLocal()
6565
qDebug() << "Installing example";
6666
QVERIFY(QFile::exists(toSystemExe(_buildDir.path() + "/QtAutoUpdaterTestInstaller")));
6767
#if defined(Q_OS_WIN32)
68-
auto res = QProcess::execute(toSystemExe(_buildDir.path() + "/QtAutoUpdaterTestInstaller"), {"-platform", "windows", "--script", configScript, "--verbose"});
68+
auto res = QProcess::execute(toSystemExe(_buildDir.path() + "/QtAutoUpdaterTestInstaller"), {"-platform", "windows", "--script", configScript});
6969
#else
70-
auto res = QProcess::execute(toSystemExe(_buildDir.path() + "/QtAutoUpdaterTestInstaller"), {"--script", configScript, "--verbose"});
70+
auto res = QProcess::execute(toSystemExe(_buildDir.path() + "/QtAutoUpdaterTestInstaller"), {"--script", configScript});
7171
#endif
7272
QCOMPARE(res, 0);
7373
QThread::sleep(3);//wait to make shure the asynchronous renaming completed

0 commit comments

Comments
 (0)