Skip to content

Commit

Permalink
Update version_update.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Girish-Anadv-07 authored Oct 25, 2023
1 parent a35977e commit f5a1909
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions version_update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,11 @@ python_file1="version.py"

version=$(grep "__version_info__ =" "$python_file1" | sed 's/.*\[\(.*\)\].*/\1/')
sed -i -e "1s/s = .*/s = [$version]/" version_update.py
git checkout -b test1
git add version_update.py
git commit -m "version update"
git push -f origin test1

updated_version=$(python version_update.py)
sed -i -e "1s/__version_info__ = .*/__version_info__ = $updated_version/" version.py
git add version.py
git add version.py version_update.py
git commit -m "version update"
git push -f origin test1
git checkout master
git pull origin master
git merge test1
git push -f origin master

rm *.py-e

0 comments on commit f5a1909

Please sign in to comment.