Check-in [95ec92e5d0]
Overview
Comment:Fixed bug where blank extraData was added
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 95ec92e5d02dcb7b30bf986e4d723afa6f758c39
User & Date: rkeene on 2014-09-09 07:51:38
Other Links: manifest | tags
Context
2014-09-09
08:12
Corrected site index generation check-in: cd7064a3fe user: rkeene tags: trunk
07:51
Fixed bug where blank extraData was added check-in: 95ec92e5d0 user: rkeene tags: trunk
07:33
Updated to create separate interpreters per thread check-in: cf4ca88d48 user: rkeene tags: trunk
Changes

Modified appfs-mk from [1fd261ccc1] to [a0e025f3a4].

76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
					mv "${filename_intree}.tmp" "${filename_intree}"
				fi
				;;
		esac
		stat_data="$(stat --format="${stat_format}" "${filename}")"

		if [ -z "${extra_data}" ]; then
			echo "${type},${stat_data},${extra_data},${filename}"
		else
			echo "${type},${stat_data},${extra_data},${filename}"
		fi
	done
}

cd "${pkgsdir}" || exit 1







|







76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
					mv "${filename_intree}.tmp" "${filename_intree}"
				fi
				;;
		esac
		stat_data="$(stat --format="${stat_format}" "${filename}")"

		if [ -z "${extra_data}" ]; then
			echo "${type},${stat_data},${filename}"
		else
			echo "${type},${stat_data},${extra_data},${filename}"
		fi
	done
}

cd "${pkgsdir}" || exit 1