Skip to content

Commit

Permalink
diedir is case sensitive
Browse files Browse the repository at this point in the history
closing the other one due to rebase and such
  • Loading branch information
crowell committed Jun 24, 2015
1 parent 78613f0 commit 7484921
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Installation
#### How to install
1. Simply download DIE and run `pip install -r requirments.txt` from DIE's directory.
2. Copy the file `die_proxy.py` into IDA plugin directory
3. Create an enviorment variable named DIEDIR and set it's value to DIE directory.
3. Create an enviorment variable named `DIEDIR` and set it's value to DIE directory.

For the Windows Handle parser plugin, you will also need to install [PyWin32](http://sourceforge.net/projects/pywin32/files/pywin32/) (manually :( )

Expand Down
4 changes: 2 additions & 2 deletions die_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys


DIE_DIR = environ["DieDir"]
DIE_DIR = environ["DIEDIR"]
DIE_NAME = "DIE.py"

sys.path.append(DIE_DIR)
Expand All @@ -13,4 +13,4 @@
plugin = imp.load_source(__name__, plugin_path)

# Export the plugin entry
PLUGIN_ENTRY = plugin.PLUGIN_ENTRY
PLUGIN_ENTRY = plugin.PLUGIN_ENTRY

0 comments on commit 7484921

Please sign in to comment.