Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Ston14 authored Jul 25, 2024
2 parents d8516d2 + c6665c7 commit 728f451
Show file tree
Hide file tree
Showing 5 changed files with 121 additions and 96 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "volatility3"]
path = volatility3
url = https://github.com/volatilityfoundation/volatility3
10 changes: 10 additions & 0 deletions build_submodules.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import subprocess
import os

def build_submodule():
submodule_path = os.path.join(os.path.dirname(__file__), './volatility3/')
subprocess.check_call(['pip', 'install', '.'], cwd=submodule_path)

if __name__ == "__main__":
build_submodule()

Loading

0 comments on commit 728f451

Please sign in to comment.