emdee@spm.plastiras.org
9c1014ee5e
Some checks are pending
CI / Python ${{ matrix.python-version }} (3.10) (push) Waiting to run
CI / Python ${{ matrix.python-version }} (3.7) (push) Waiting to run
CI / Python ${{ matrix.python-version }} (3.8) (push) Waiting to run
CI / Python ${{ matrix.python-version }} (3.9) (push) Waiting to run
9 lines
332 B
Bash
9 lines
332 B
Bash
#!/bin/sh
|
|
|
|
#find * -name \*.py | xargs grep -l '[ ]*$' | xargs sed -i -e 's/[ ]*$//'
|
|
rsync "$@" -vaxL --include \*.py \
|
|
--exclude Toxygen.egg-info --exclude build \
|
|
--exclude \*.pyc --exclude .pyl\* --exclude \*.so --exclude \*~ \
|
|
--exclude __pycache__ --exclude \*.egg-info --exclude \*.new \
|
|
./ ../toxygen.git/|grep -v /$
|