diff options
| author | Simon Wisselink <s.wisselink@iwink.nl> | 2023-08-08 00:18:55 +0200 |
|---|---|---|
| committer | Simon Wisselink <s.wisselink@iwink.nl> | 2023-08-08 00:18:55 +0200 |
| commit | 6c48c44be50cfcbe922ee8f83b172410c0433ef7 (patch) | |
| tree | 31a7110771fb9f9c3386c758ae178b0038e4403e /make-release.sh | |
| parent | 277dfda102d2f5bd5b05e75b8a1b4e7bd42ef89e (diff) | |
| download | smarty-6c48c44be50cfcbe922ee8f83b172410c0433ef7.tar.gz smarty-6c48c44be50cfcbe922ee8f83b172410c0433ef7.tar.bz2 smarty-6c48c44be50cfcbe922ee8f83b172410c0433ef7.zip | |
Fix release script for new location of Smarty class
Diffstat (limited to 'make-release.sh')
| -rwxr-xr-x | make-release.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make-release.sh b/make-release.sh index abd8f1c0..ca2069be 100755 --- a/make-release.sh +++ b/make-release.sh @@ -9,9 +9,9 @@ fi git checkout -b "release/$1" sed -i "s/## \\[Unreleased\\]/## \\[Unreleased\\]\\n\\n## \\[$1\\] - $(date +%Y-%m-%d)/" CHANGELOG.md -sed -i "s/const SMARTY_VERSION = '[^']\+';/const SMARTY_VERSION = '$1';/" libs/Smarty.class.php +sed -i "s/const SMARTY_VERSION = '[^']\+';/const SMARTY_VERSION = '$1';/" src/Smarty.php -git add CHANGELOG.md libs/Smarty.class.php +git add CHANGELOG.md src/Smarty.php git commit -m "version bump" git checkout master |
