mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-30 08:51:32 +00:00
11 lines
190 B
Bash
Executable file
11 lines
190 B
Bash
Executable file
#!/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
|