Skip to content

Commit

Permalink
using submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
Br4guette authored and Br4guette committed Jul 25, 2024
1 parent f88f001 commit c6665c7
Show file tree
Hide file tree
Showing 5 changed files with 314 additions and 275 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 c6665c7

Please sign in to comment.