1
0
Fork 0

Fix pipenv run commands

This commit is contained in:
Ash Wilson 2017-10-20 21:11:03 -04:00
parent ec9bf59b47
commit a9f3ea6059
1 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ source .env
Now you're ready to go. Use a shell glob to invoke `upload.py` with the emoji files as ARGV:
```bash
pipenv run upload.py ${EMOJI_DIR}/*.png
pipenv run python upload.py ${EMOJI_DIR}/*.png
```
:sparkles:
@ -50,5 +50,5 @@ To export emoji, use `export.py` and specify an emoji directory:
```bash
source .env
pipenv run export.py path-to-destination/
pipenv run python export.py path-to-destination/
```