-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Needed a bit more work to get rid of need to run Binja and PyCharm fr…
…om a shell.
- Loading branch information
1 parent
baff77b
commit ba9b658
Showing
3 changed files
with
21 additions
and
13 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Shell script used by PATE Binja plugin to run pate. | ||
# This is done with a script so that all is evaluated within the users's shell environment. | ||
|
||
if [ "$PATE_BINJA_MODE" = "BUILD" ] | ||
then | ||
pate="$PATE/pate.sh" | ||
else | ||
pate="docker run --rm -i -v .:/work --workdir=/work pate" | ||
fi | ||
|
||
$pate "$@" | ||
|