Skip to content

Commit

Permalink
Fixed REALLY REALLY Fixed.... Dependencies not installing problem.
Browse files Browse the repository at this point in the history
  • Loading branch information
eminfedar committed Sep 3, 2018
1 parent 3ed84b0 commit 22e76e1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion MainForm.ui.qml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ Item {
popup.text = qsTr("Installing...")
popup.open()
ddpkg.install()
popup.closePolicy = Popup.CloseOnEscape | Popup.CloseOnPressOutside
}
}

Expand Down
2 changes: 1 addition & 1 deletion ddpkg.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class DDpkg : public QObject
}

// If you use an another package system, just change the these two.
QString cmd_install = "pkexec /bin/sh -c \"dpkg --install '{DEBFILE}' && apt-get install -f -y\"";
QString cmd_install = "pkexec /bin/sh -c \"dpkg --install '{DEBFILE}';apt-get -y install -f\"";
QString cmd_remove = "pkexec dpkg --purge {PACKAGE}";

// Get the name of the package in the repository.
Expand Down

0 comments on commit 22e76e1

Please sign in to comment.