Signed-off-by: hmz007 <hmz007@gmail.com> Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
8 lines
149 B
Bash
8 lines
149 B
Bash
#!/bin/bash
|
|
#
|
|
# Shell wrapper around sum_bits.py.
|
|
|
|
readonly THIS_DIR=$(dirname $0)
|
|
|
|
PYTHONPATH=$THIS_DIR/../client/python $THIS_DIR/sum_bits.py "$@"
|