Overview
Comment: | Minor clean-up |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | dfe475c7796977a030e0b069579d83509fd31f16 |
User & Date: | rkeene on 2011-07-20 00:43:18 |
Other Links: | manifest | tags |
Context
2011-07-22
| ||
18:35 | Added UDP package check-in: bc4f6068e4 user: rkeene tags: trunk | |
2011-07-20
| ||
00:43 | Minor clean-up check-in: dfe475c779 user: rkeene tags: trunk | |
00:37 | Fixed minor bug, take 2 check-in: 26aa2157b5 user: rkeene tags: trunk | |
Changes
Modified server/buildpkgs/build_all.sh from [467d09ee9f] to [f4e58c31b0].
229 229 pkginstdir="${instdir}/${dir}" 230 230 231 231 ( 232 232 cd "${dir}/out" 2>/dev/null >/dev/null || exit 1 233 233 234 234 mkdir "${pkginstdir}" 235 235 236 - cp -r * "${pkginstdir}/" 236 + cp -r * "${pkginstdir}/" >/dev/null 2>/dev/null 237 237 ) 238 238 done 239 239 240 240 ( 241 241 cd __tmp__ || exit 1 242 242 243 243 tar -cf - * 244 244 ) | bzip2 -9c > "${OUTFILEBASE}.tar.bz2" 245 245 246 246 rm -rf __tmp__ 247 247 248 248 exit 0