Skip to content

Commit

Permalink
update dep script for django
Browse files Browse the repository at this point in the history
  • Loading branch information
MikhailKorol-saritasa committed Jul 7, 2023
1 parent a3de182 commit c40c139
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion charts/tekton-pipelines/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.37-dev.2
version: 0.1.37-dev.3


maintainers:
Expand Down
2 changes: 1 addition & 1 deletion charts/tekton-pipelines/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ saritasa-tekton-pipelines

## `chart.version`

![Version: 0.1.37-dev.2](https://img.shields.io/badge/Version-0.1.37--dev.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.1.37-dev.3](https://img.shields.io/badge/Version-0.1.37--dev.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

## Maintainers

Expand Down
17 changes: 8 additions & 9 deletions charts/tekton-pipelines/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -194,16 +194,15 @@ buildpacks:
if [ -f poetry.lock ]; then
echo "poetry.lock is found, skipping pip section."
exit
fi
if [ -f manage.py ]; then
cp requirements/$(params.environment)*.txt requirements.txt || echo "Unable to find requirements for $(params.environment)"
fi
if [ -f requirements.txt ]; then
echo "Found requirements.txt"
else
if [ -f manage.py ]; then
cp requirements/$(params.environment)*.txt requirements.txt || echo "Unable to find requirements for $(params.environment)"
fi
if [ -f requirements.txt ]; then
echo "Found requirements.txt"
else
echo "requirements.txt is not found! Halting execution."
exit 1
fi
echo "requirements.txt is not found! Halting execution."
exit 1
fi
# ┌──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
# │ BUILDPACK: DOTNET │
Expand Down

0 comments on commit c40c139

Please sign in to comment.