diff options
Diffstat (limited to 'tools/checkbin/checkbin.sh')
-rwxr-xr-x | tools/checkbin/checkbin.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/checkbin/checkbin.sh b/tools/checkbin/checkbin.sh new file mode 100755 index 0000000..7888d03 --- /dev/null +++ b/tools/checkbin/checkbin.sh @@ -0,0 +1,9 @@ +#!/bin/sh +# Copyright (c) 2009 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +# Include pefile in the path. +PYTHONPATH="$(dirname $0)/../../third_party/pefile:$PYTHONPATH" +export PYTHONPATH +python "$(dirname $0)/checkbin.py" "$@" |