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

Commit

Permalink
Rename requirements.txt to requirements-icekit.txt. This file is …
Browse files Browse the repository at this point in the history
…only used to install ICEkit itself when a project is run via `go.sh`.
  • Loading branch information
mrmachine committed Sep 16, 2016
1 parent 2d14eb6 commit 9a07423
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion icekit/bin/startproject.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ touch requirements.txt
find . -type f -exec sed -e "s/project_template/$DEST_DIR_BASENAME/g" -i '' {} \;

# Replace editable with package requirement.
sed -e "s/-e ../django-icekit/" -i '' requirements.txt
sed -e "s/-e ../django-icekit/" -i '' requirements-icekit.txt

if [[ -n $(which git) ]]; then
echo
Expand Down
2 changes: 1 addition & 1 deletion project_template/go.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ fi

# Install ICEKit project.
if [[ -z $("$ICEKIT_VENV/bin/pip" freeze | grep django-icekit) ]]; then
"$ICEKIT_VENV/bin/pip" install -r requirements.txt
"$ICEKIT_VENV/bin/pip" install -r requirements-icekit.txt
fi

# Get absolute directory for the `icekit` package.
Expand Down

0 comments on commit 9a07423

Please sign in to comment.