Skip to content

Commit

Permalink
Fix travis build
Browse files Browse the repository at this point in the history
  • Loading branch information
xarkes committed Sep 2, 2017
1 parent e83dae2 commit b64fd5a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Expand Up @@ -20,8 +20,9 @@ script:
- mkdir build ; cd build
- qmake PREFIX=/usr APPIMAGE=1 ../src
- make -j4
- sudo make INSTALL_ROOT=appdir install ; sudo chown -R $USER appdir
- mkdir -p appdir/usr/share/radare2 ; cp -Lr /usr/share/radare2/*-git/ appdir/usr/share/radare2/ ; find appdir/
- mkdir appdir
- sudo make INSTALL_ROOT=appdir install && sudo chown -R $USER appdir
- mkdir -p appdir/usr/share/radare2 && cp -Lr /usr/share/radare2/*-git/ appdir/usr/share/radare2/ && find appdir/

after_success:
- wget -c "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
Expand Down
3 changes: 2 additions & 1 deletion src/mainwindow.cpp
Expand Up @@ -188,7 +188,8 @@ void MainWindow::initUI()
if (syntax == "") {
break;
}
QAction* action = new QAction(syntax);
QAction* action = new QAction(ui->menuAsm_syntax);
action->setText(syntax);
action->setCheckable(true);
if (syntax == checked) {
action->setChecked(true);
Expand Down

0 comments on commit b64fd5a

Please sign in to comment.