You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
190 B
11 lines
190 B
#!/bin/bash
|
|
|
|
contrib=$(dirname "$0")
|
|
packages="$contrib"/../packages/
|
|
|
|
if [ ! -d "$packages" ]; then
|
|
echo "Run make_packages first!"
|
|
exit 1
|
|
fi
|
|
|
|
python3 setup.py sdist --format=zip,gztar
|
|
|