Skip to content
This repository has been archived by the owner on May 19, 2024. It is now read-only.

Commit

Permalink
do not run install within virtualenv shell
Browse files Browse the repository at this point in the history
1. this is not necessary
2. fixes the following issue (see #18):
   /bin/sh: line 1: @pipenv: command not found
  • Loading branch information
velimir committed Mar 15, 2019
1 parent 1bec1db commit e916f0e
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions {{ cookiecutter.project_name }}/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,11 @@ test: ##=> Run pytest

_install_packages:
$(info [*] Install required packages...)
@$(PIPENV) shell \
&& @$(PIPENV) install
@$(PIPENV) install

_install_dev_packages:
$(info [*] Install required dev-packages...)
@$(PIPENV) shell \
&& @$(PIPENV) install -d
@$(PIPENV) install -d

_check_service_definition:
$(info [*] Checking whether service $(SERVICE) exists...)
Expand Down

0 comments on commit e916f0e

Please sign in to comment.