stable/bin/freqtrade
Matthias faf19eda86 Break the old binary file so users are forced to reinstall
Note:
This should not be relevant anymore - this binary has been deprecated
and is not being used by new installations since July 2019.
2020-02-10 17:31:49 +01:00

12 lines
190 B
Python
Executable File

#!/usr/bin/env python3
import sys
import logging
logger = logging.getLogger(__name__)
logger.error("DEPRECATED installation detected, please run `pip install -e .` again.")
sys.exit(2)