Skip to content

Commit

Permalink
freetz-ng focal bugfix 2
Browse files Browse the repository at this point in the history
  • Loading branch information
jstucke committed Jan 31, 2023
1 parent 41808d2 commit 5bcb994
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fact_extractor/helperFunctions/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def install_github_project(project_path: str, commands: List[str]):
for command in commands:
output, return_code = execute_shell_command_get_return_code(command)
if return_code != 0:
error = f'Error while processing github project {project_path}!\n{output}'
error = f'Error while processing github project {project_path}!\n{command}\n{output}'
break

if error:
Expand Down
2 changes: 1 addition & 1 deletion fact_extractor/install/unpacker.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ def _install_freetz():
'Freetz-NG/freetz-ng',
[
'sudo useradd -M makeuser || :',
'mkdir /home/makeuser || :',
'sudo mkdir /home/makeuser || :',
'sudo chown -R makeuser /home/makeuser',
f'sudo chown -R makeuser {build_directory}',
'sudo su makeuser -c "make -j$(nproc) tools"',
Expand Down

0 comments on commit 5bcb994

Please sign in to comment.