mirror of
https://github.com/yaronzz/Tidal-Media-Downloader.git
synced 2026-01-16 16:04:25 -05:00
20 lines
310 B
Bash
20 lines
310 B
Bash
rm -rf dist
|
|
rm -rf build
|
|
rm -rf __init__.spec
|
|
|
|
cd TIDALDL-PY
|
|
rm -rf __init__.spec
|
|
rm -rf dist
|
|
rm -rf build
|
|
rm -rf exe
|
|
rm -rf MANIFEST.in
|
|
rm -rf *.egg-info
|
|
|
|
python setup.py sdist bdist_wheel
|
|
pyinstaller -F tidal_dl/__init__.py
|
|
mkdir exe
|
|
mv dist/__init__.exe exe/tidal-dl.exe
|
|
|
|
pip uninstall -y tidal-dl
|
|
|
|
cd .. |