Changeset 572
- Timestamp:
- 12/19/2011 18:16:30 (5 months ago)
- File:
-
- 1 edited
-
trunk/confmanlib.sh.in (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/confmanlib.sh.in
r553 r572 100 100 } 101 101 102 function conf_svncommit { 103 @SVN@ commit --with-revprop "confman:version=$VERSION" "$@" 104 } 105 102 106 # Checks out the conf tree if we don't already have it. Updates it if we do. 103 107 function conf_checkout_tree { … … 278 282 # curly brace expansion. 279 283 if echo "$newmodules" | grep -q ','; then 280 @SVN@commit $(eval echo ${WORK_PATH}/{$newmodules}) \284 conf_svncommit $(eval echo ${WORK_PATH}/{$newmodules}) \ 281 285 $(eval echo ${WORK_PATH}/${REPO_CHECKPTS}/{$newmodules}) -m \ 282 286 "Created directory structure for $newmodules" … … 284 288 # We test -n for this case because $newmodules might 285 289 # be empty, i.e. no new modules were created 286 @SVN@commit ${WORK_PATH}/$newmodules \290 conf_svncommit ${WORK_PATH}/$newmodules \ 287 291 ${WORK_PATH}/${REPO_CHECKPTS}/$newmodules -m \ 288 292 "Created directory structure for $newmodules" … … 319 323 done 320 324 321 @SVN@commit -F "$msg" $files325 conf_svncommit -F "$msg" $files 322 326 } 323 327 … … 853 857 @SVN@ add $chkpath 854 858 local msg="Created a checkpoint, ${checkpoint} for ${module} --`whoami`" 855 @SVN@commit ${WORK_PATH}/${REPO_CHECKPTS} -m "$msg"859 conf_svncommit ${WORK_PATH}/${REPO_CHECKPTS} -m "$msg" 856 860 } 857 861 … … 864 868 @SVN@ rm ${chkpath} 865 869 local msg="Removed the checkpoint ${checkpoint} from ${module} --`whoami`" 866 @SVN@commit ${WORK_PATH}/${REPO_CHECKPTS} -m "$msg"870 conf_svncommit ${WORK_PATH}/${REPO_CHECKPTS} -m "$msg" 867 871 } 868 872 … … 1033 1037 done 1034 1038 1035 @SVN@commit -m "Renaming ${oldmod} to ${newmod}" \1039 conf_svncommit -m "Renaming ${oldmod} to ${newmod}" \ 1036 1040 ${WORK_PATH}/${oldmod} ${WORK_PATH}/${REPO_CHECKPTS}/${oldmod} \ 1037 1041 ${WORK_PATH}/${newmod} ${WORK_PATH}/${REPO_CHECKPTS}/${newmod} \ … … 1262 1266 done 1263 1267 1264 @SVN@commit -F "$logfile" $recipes1268 conf_svncommit -F "$logfile" $recipes 1265 1269 } 1266 1270
Note: See TracChangeset
for help on using the changeset viewer.
