Skip to content

Commit

Permalink
freetz: only install for x86
Browse files Browse the repository at this point in the history
  • Loading branch information
soxrok2212 authored and jstucke committed Aug 21, 2024
1 parent 426387c commit 1e2489f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fact_extractor/install/unpacker.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,8 @@ def main(distribution):
install_dependencies(DEPENDENCIES[distribution])

# installing freetz
_install_freetz()
if platform.machine() == 'x86_64':
_install_freetz()

# install plug-in dependencies
_install_plugins()
Expand Down

0 comments on commit 1e2489f

Please sign in to comment.