Skip to content

Commit 72581e9

Browse files
committed
Tweaked the mkrelease verbose output some more.
- Legacy-Id: 10178
1 parent dc185ae commit 72581e9

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

bin/mkrelease

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ $do svn commit changelog -m "Changelog entry for $VER"
209209
note "Verifying there's no uncommitted changes ..."
210210
$do svn st | grep "^[AMGRD] " && die "There seems to be uncommitted changes in this working copy"
211211

212-
note "Updating the version info in $VERFILE and making sure'\$Rev\$' is Ok"
212+
note "Updating the version info in $VERFILE and making sure'\$Rev\$' is Ok ..."
213213
$do sed -i -r -e "/^__version__/s/\"[.0-9]+(dev[0-9]+)?\"/\"$VER\"/" \
214214
-e "/^__rev__/s/\".*\"/\"\$Rev:\$\"/" \
215215
$VERFILE
@@ -225,20 +225,20 @@ $do svn commit $VERFILE $SETTINGS -m "Set version info to release version $VER b
225225
note "Creating new tag 'tags/$VER' from $SRC ..."
226226
$do svn cp $REPO/$SRC $REPO/tags/$VER -m "Creating new tag 'tags/$VER' from $SRC"
227227

228-
note "Updating version and revision info to indicate that the source and branch aren't releases"
228+
note "Updating version and revision info to indicate that the source and branch aren't releases ..."
229229
$do sed -i -r -e "/^__version__/s/\"[0-9.]*\"/\"$DEV\"/" \
230230
-e "/^__rev__/s/\"\\\$Rev: (.*) \\\$\"/\"\$Rev:\$ (dev) Latest release: Rev. \1 \"/" \
231231
$VERFILE
232232

233-
note "Updating the deployment settings in settings.py to development mode"
233+
note "Updating the deployment settings in settings.py to development mode ..."
234234
$do sed -i -r -e 's/^DEBUG *= *.*$/DEBUG = True/' \
235235
-e "s/^SERVER_MODE *= *.*\$/SERVER_MODE = 'development'/" \
236236
$SETTINGS
237237

238-
note "Committing the updated version and deployment settings"
238+
note "Committing the updated version and deployment settings ..."
239239
$do svn commit $VERFILE $SETTINGS -m "Set version info and settings back to development mode"
240240

241-
note "Creating new tag 'tags/dev/$DEV' from $SRC"
241+
note "Creating new tag 'tags/dev/$DEV' from $SRC ..."
242242
$do svn cp $REPO/$SRC $REPO/tags/dev/$DEV -m "Creating new tag 'tags/dev/$DEV' from $SRC"
243243

244244
$do svn update -q

0 commit comments

Comments
 (0)