canmove, Confirmed users
2,056
edits
(make terminology and procedures more consistent among release engineering steps) |
|||
| Line 201: | Line 201: | ||
Change the version identifier in source files to the one for the test build: | Change the version identifier in source files to the one for the test build: | ||
find . -type f -exec perl -pi -e "s/${JPCV}/${ | find . -type f -exec perl -pi -e "s/${JPCV}/${JPFV}/g" {} \; | ||
Verify that the version identifiers were changed correctly. In particular, make sure the find/replace command didn't modify strings that aren't SDK version identifiers but look similar to them (f.e. a version identifier in the jQuery library). | Verify that the version identifiers were changed correctly. In particular, make sure the find/replace command didn't modify strings that aren't SDK version identifiers but look similar to them (f.e. a version identifier in the jQuery library). | ||
| Line 207: | Line 207: | ||
Commit the changes: | Commit the changes: | ||
git commit -a -m"update SDK version to ${ | git commit -a -m"update SDK version to ${JPFV} for next test build" | ||
Create a tarball and a ZIP archive: | Create a tarball and a ZIP archive: | ||