Skip to content

Commit

Permalink
Removed PyInstaller instructions (#4908)
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz authored Oct 6, 2024
1 parent 6ed5aa4 commit eb4c7e9
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 97 deletions.
86 changes: 0 additions & 86 deletions docs/sources/developer/Packaging-with-pyinstaller.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/sources/developer/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,3 @@ Developer documentation
How to write an analysis plugin <How-to-write-an-analysis-plugin>
How to write an output module <How-to-write-an-output-module>
Packaging with Docker <Packaging-with-docker>
Packaging with PyInstaller <Packaging-with-pyinstaller>
2 changes: 0 additions & 2 deletions plaso/scripts/image_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,6 @@ def Main():


if __name__ == '__main__':
# For PyInstaller sake we need to define this directly after "__main__".
# https://github.com/pyinstaller/pyinstaller/wiki/Recipe-Multiprocessing
multiprocessing.freeze_support()

sys.exit(Main())
2 changes: 0 additions & 2 deletions plaso/scripts/log2timeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,6 @@ def Main():


if __name__ == '__main__':
# For PyInstaller sake we need to define this directly after "__main__".
# https://github.com/pyinstaller/pyinstaller/wiki/Recipe-Multiprocessing
multiprocessing.freeze_support()

sys.exit(Main())
2 changes: 0 additions & 2 deletions plaso/scripts/pinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,6 @@ def Main():


if __name__ == '__main__':
# For PyInstaller sake we need to define this directly after "__main__".
# https://github.com/pyinstaller/pyinstaller/wiki/Recipe-Multiprocessing
multiprocessing.freeze_support()

sys.exit(Main())
2 changes: 0 additions & 2 deletions plaso/scripts/psort.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,6 @@ def Main():


if __name__ == '__main__':
# For PyInstaller sake we need to define this directly after "__main__".
# https://github.com/pyinstaller/pyinstaller/wiki/Recipe-Multiprocessing
multiprocessing.freeze_support()

sys.exit(Main())
2 changes: 0 additions & 2 deletions plaso/scripts/psteal.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,6 @@ def Main():


if __name__ == '__main__':
# For PyInstaller sake we need to define this directly after "__main__".
# https://github.com/pyinstaller/pyinstaller/wiki/Recipe-Multiprocessing
multiprocessing.freeze_support()

sys.exit(Main())

0 comments on commit eb4c7e9

Please sign in to comment.