Changeset 228 for branches/samba-3.2.x/release-scripts
- Timestamp:
- May 26, 2009, 9:44:50 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.2.x/release-scripts/create-tarball
r204 r228 138 138 fi 139 139 140 if [ "x`git -tag -l ${OPT_TAG}`" != "x" ]; then140 if [ "x`git tag -l ${OPT_TAG}`" != "x" ]; then 141 141 echo -n "Tag exists. Do you wish to overwrite? (y/N): " 142 142 read answer … … 156 156 fi 157 157 158 git -tag -u ${OPT_KEYID} ${OPT_TAG}158 git tag -u ${OPT_KEYID} ${OPT_TAG} 159 159 exitOnError $? "Failed to create tag" 160 160 … … 171 171 cd $TOPDIR 172 172 173 git -checkout ${OPT_BRANCH}173 git checkout ${OPT_BRANCH} 174 174 exitOnError $? "Invalid branch name \"${OPT_BRANCH}\"" 175 175 … … 189 189 190 190 /bin/rm -rf ../samba-${version} 191 git -archive --format=tar --prefix=samba-${version}/ HEAD | (cd .. && tar xf -)191 git archive --format=tar --prefix=samba-${version}/ HEAD | (cd .. && tar xf -) 192 192 exitOnError $? "Failed to create release directory tree" 193 193
Note:
See TracChangeset
for help on using the changeset viewer.