File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -46,13 +46,11 @@ function change_files {
4646 if [[ " $OSTYPE " == " darwin" * ]]; then
4747 # MacOS (BSD sed)
4848 sed -E -i " " " s|$OLD_VERSION |$FINAL_VERSION |g" docker/docker-compose.yaml
49- sed -E -i " " " s|$OLD_VERSION |$FINAL_VERSION |g" setup.py
5049 sed -E -i " " " s|$OLD_VERSION |$FINAL_VERSION |g" sapl/templates/base.html
5150 sed -E -i " " " s|$OLD_VERSION |$FINAL_VERSION |g" sapl/settings.py
5251 else
5352 # Linux (GNU sed)
5453 sed -i -E " s|$OLD_VERSION |$FINAL_VERSION |g" docker/docker-compose.yaml
55- sed -i -E " s|$OLD_VERSION |$FINAL_VERSION |g" setup.py
5654 sed -i -E " s|$OLD_VERSION |$FINAL_VERSION |g" sapl/templates/base.html
5755 sed -i -E " s|$OLD_VERSION |$FINAL_VERSION |g" sapl/settings.py
5856 fi
@@ -93,7 +91,7 @@ prompt_yes_no() {
9391
9492function commit_and_push {
9593 echo -e " ${green_color} Committing new release $FINAL_VERSION ...${color_reset} "
96- git add docker/docker-compose.yaml setup.py sapl/settings.py sapl/templates/base.html
94+ git add docker/docker-compose.yaml sapl/settings.py sapl/templates/base.html
9795 git changelog --tag $FINAL_VERSION --prune-old -x > latest_changes.md
9896 cat latest_changes.md CHANGES.md > CHANGES.tmp
9997 mv CHANGES.tmp CHANGES.md
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments