mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-09 21:04:15 +00:00
update error message
This commit is contained in:
13
dotdrop/dotdrop.py
Executable file → Normal file
13
dotdrop/dotdrop.py
Executable file → Normal file
@@ -15,12 +15,19 @@ try:
|
|||||||
except:
|
except:
|
||||||
errmsg = '''
|
errmsg = '''
|
||||||
Dotdrop has been updated to be included in pypi and
|
Dotdrop has been updated to be included in pypi and
|
||||||
the way it needs to be called has changed.
|
the way it needs to be called has slightly changed.
|
||||||
|
|
||||||
First update dotdrop:
|
First get the latest version of dotdrop:
|
||||||
$ git submodule update --init --recursive
|
$ git submodule update --init --recursive
|
||||||
And then re-run the bootstrap script:
|
And then re-run the bootstrap script to update \"dotdrop.sh\":
|
||||||
$ ./dotdrop/bootstrap.sh
|
$ ./dotdrop/bootstrap.sh
|
||||||
|
|
||||||
|
Instead of calling dotdrop directly like this:
|
||||||
|
$ python3 dotdrop/dotdrop/dotdrop.py ...
|
||||||
|
Call it like this:
|
||||||
|
$ PYTHONPATH=dotdrop python3 -m dotdrop.dotdrop ...
|
||||||
|
|
||||||
|
See TODO
|
||||||
'''
|
'''
|
||||||
print(errmsg)
|
print(errmsg)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|||||||
Reference in New Issue
Block a user