Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Commit

Permalink
Fix logging
Browse files Browse the repository at this point in the history
this fix needed only one extra arg 💀️
  • Loading branch information
axtloss committed Oct 19, 2022
1 parent 28bf9f7 commit 698ffe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/functions/install_screen.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __init__(self, window, main_carousel, next_page, application, **kwargs):
def install(self):
prefs = self.window.summary_screen.installprefs.generate_json()
with open(os.getenv("HOME")+"/jade-gui.log", "wb") as f:
process=subprocess.Popen(["bash", "-c", "bash -- /usr/share/jade-gui/jade_gui/scripts/install.sh"], stdout=subprocess.PIPE)
process=subprocess.Popen(["bash", "-c", "bash -- /usr/share/jade-gui/jade_gui/scripts/install.sh"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
for c in iter(lambda: process.stdout.read(1), b""):
log=c
try:
Expand Down

0 comments on commit 698ffe0

Please sign in to comment.