mirror of
https://github.com/parchlinux/calamares.git
synced 2025-07-02 11:55:36 -04:00
check_chroot_call does not actually return a error code, use chroot_call
instead. Thanks to Kevin Kofler for pointing this out.
This commit is contained in:
parent
1f6feb9417
commit
d9187c25c7
2 changed files with 5 additions and 7 deletions
|
@ -19,14 +19,12 @@
|
|||
# along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
import libcalamares
|
||||
from libcalamares.utils import check_chroot_call
|
||||
from libcalamares.utils import chroot_call
|
||||
|
||||
def run_dracut():
|
||||
return check_chroot_call(['dracut', '-f'])
|
||||
return chroot_call(['dracut', '-f'])
|
||||
|
||||
def run():
|
||||
returnCode = run_dracut()
|
||||
if returnCode != 0:
|
||||
return ("Failed to run dracut on the target", "The exit code was {}".format(returnCode))
|
||||
|
||||
|
||||
return ("Failed to run dracut on the target", "The exit code was {}".format(returnCode))
|
Loading…
Add table
Add a link
Reference in a new issue