From a9f3ea60591e4e18297ad76d5bc26cabf7f1f231 Mon Sep 17 00:00:00 2001 From: Ash Wilson Date: Fri, 20 Oct 2017 21:11:03 -0400 Subject: [PATCH] Fix pipenv run commands --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a9db0a6..e687aef 100644 --- a/README.md +++ b/README.md @@ -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/ ```