Overview
| Comment: | Updated to skip files in packages directory | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 78bd73355f8a5701d9929fb2792a191c | 
| User & Date: | rkeene on 2014-11-11 18:45:45 | 
| Other Links: | manifest | tags | 
Context
| 2014-11-11 | ||
| 18:52 | Added base64 module for PKI on Tcl 8.5 check-in: 4074828ffa user: rkeene tags: trunk | |
| 18:45 | Updated to skip files in packages directory check-in: 78bd73355f user: rkeene tags: trunk | |
| 18:38 | Added a CPIO input mode for "appfs-mkfs" check-in: 5bdc276f57 user: rkeene tags: trunk | |
Changes
Modified appfs-mkfs from [2461e4ba43] to [0eb1bfa1cb].
| ︙ | ︙ | |||
| 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | 
			fi
		) > "${packagelistfile}"
		;;
esac
for package in *; do
	(
		cd "${package}" || exit 1
		for os_cpuArch in *; do
			os="$(echo "${os_cpuArch}" | cut -f 1 -d '-')"
			cpuArch="$(echo "${os_cpuArch}" | cut -f 2- -d '-')"
 | > > > > | 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | 
			fi
		) > "${packagelistfile}"
		;;
esac
for package in *; do
	if [ ! -d "${package}" ]; then
		continue
	fi
	(
		cd "${package}" || exit 1
		for os_cpuArch in *; do
			os="$(echo "${os_cpuArch}" | cut -f 1 -d '-')"
			cpuArch="$(echo "${os_cpuArch}" | cut -f 2- -d '-')"
 | 
| ︙ | ︙ |