Skip to content

Commit

Permalink
Break the old binary file so users are forced to reinstall
Browse files Browse the repository at this point in the history
Note:
This should not be relevant anymore - this binary has been deprecated
and is not being used by new installations since July 2019.
  • Loading branch information
xmatthias committed Feb 10, 2020
1 parent da03c36 commit faf19ed
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions bin/freqtrade
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/usr/bin/env python3

import sys
import warnings
import logging

from freqtrade.main import main
logger = logging.getLogger(__name__)

warnings.warn(
"Deprecated - To continue to run the bot like this, please run `pip install -e .` again.",
DeprecationWarning)
main(sys.argv[1:])

logger.error("DEPRECATED installation detected, please run `pip install -e .` again.")

sys.exit(2)

0 comments on commit faf19ed

Please sign in to comment.