aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar MarkKoz <[email protected]>2019-08-05 13:47:28 -0700
committerGravatar MarkKoz <[email protected]>2019-08-05 13:47:28 -0700
commitdc8d604de5c7489c7021c4eeb7380fb724712c49 (patch)
treebda923f6b8f26a296c083c799633642de8e0992d
parentAdd links to API docs in README (diff)
Make Pipenv scripts compatible with Windows
Remove reliance on the shebang in the shell script.
-rw-r--r--Pipfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Pipfile b/Pipfile
index db53ce7..c2a1131 100644
--- a/Pipfile
+++ b/Pipfile
@@ -29,9 +29,9 @@ python_version = "3.7"
[scripts]
lint = "flake8"
precommit = "pre-commit install"
-test = "scripts/dev.sh -c 'pipenv run coverage run -m unittest'"
+test = "sh scripts/dev.sh -c 'pipenv run coverage run -m unittest'"
testb = """
- scripts/dev.sh \
+ sh scripts/dev.sh \
--build \
--clean \
-c 'pipenv run coverage run -m unittest'
@@ -46,7 +46,7 @@ snekbox = """
--access-logfile - \
snekbox.api.app
"""
-devsh = "scripts/dev.sh"
+devsh = "sh scripts/dev.sh"
build = """
docker build \
-t pythondiscord/snekbox:latest \