generated from clearbluejar/ghidra-python-vscode-devcontainer-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
41f19cd
commit 52a89f7
Showing
3 changed files
with
35 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,8 +19,17 @@ fi | |
# install local workspace and test requirements | ||
pip install -e ".[testing]" | ||
|
||
# pull down test data | ||
git clone [email protected]:clearbluejar/ghidriff-test-data.git tests/data | ||
# git clone test data if dir doesn't exist | ||
TEST_DATA_PATH="tests/data" | ||
|
||
if [ -z "$(ls -A $TEST_DATA_PATH)" ]; then | ||
git clone https://github.com/clearbluejar/ghidriff-test-data.git tests/data | ||
pushd $TEST_DATA_PATH | ||
git remote set-url origin [email protected]:clearbluejar/ghidriff-test-data.git | ||
popd | ||
fi | ||
|
||
|
||
|
||
# Setup Ghidra Dev for Reference | ||
# git clone https://github.com/NationalSecurityAgency/ghidra.git ~/ghidra-master | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters