Overview
| Comment: | Removed blank line | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 17bbfdc417bb44a02adc49d800354515 | 
| User & Date: | rkeene on 2014-09-16 18:21:48 | 
| Other Links: | manifest | tags | 
Context
| 2014-09-18 | ||
| 05:14 | Added support for a "platform" symlink pointing to the current platform check-in: 7ef423f980 user: rkeene tags: trunk | |
| 04:43 | Added package building branch check-in: 07e806db4e user: rkeene tags: packages | |
| 2014-09-16 | ||
| 18:21 | Removed blank line check-in: 17bbfdc417 user: rkeene tags: trunk | |
| 2014-09-14 | ||
| 04:36 | Updated to normalize CPU/OS check-in: ee1a499a2e user: rkeene tags: trunk | |
Changes
Modified appfs-mkfs from [ce86fe818d] to [994caae026].
| ︙ | ︙ | |||
| 96 97 98 99 100 101 102 | 
		for os_cpuArch in *; do
			os="$(echo "${os_cpuArch}" | cut -f 1 -d '-')"
			cpuArch="$(echo "${os_cpuArch}" | cut -f 2- -d '-')"
			(
				cd "${os_cpuArch}" || exit 1
 | < | 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | 
		for os_cpuArch in *; do
			os="$(echo "${os_cpuArch}" | cut -f 1 -d '-')"
			cpuArch="$(echo "${os_cpuArch}" | cut -f 2- -d '-')"
			(
				cd "${os_cpuArch}" || exit 1
				for version in *; do
					if [ -h "${version}" ]; then
						continue
					fi
					manifestfile="${appfsdir}/sha1/${RANDOM}${RANDOM}${RANDOM}${RANDOM}${RANDOM}.tmp"
 | 
| ︙ | ︙ |