Check-in [e27e3470a6]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Actually perform cleanup
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: e27e3470a6cf7de487c1c0abbaf568b7dbfe455e
User & Date: rkeene 2020-09-02 20:08:12.731
Context
2020-09-03
13:26
Add patch to fix browser semantics check-in: 708ffba4da user: rkeene tags: trunk
2020-09-02
20:08
Actually perform cleanup check-in: e27e3470a6 user: rkeene tags: trunk
20:07
Add S/MIME patch check-in: 058bbf6b95 user: rkeene tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to scripts/fossil/build-fossil-static.sh.
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222

workdir="${TMPDIR:-/tmp}/build-fossil-static.$(random)"
mkdir -p "${workdir}" || exit 1
trap cleanup EXIT

function cleanup() {
	if [ -n "${workdir}" ]; then
echo		rm -rf "${workdir}"
		workdir=''
	fi
}

# Begin the build
retval='0'








|







208
209
210
211
212
213
214
215
216
217
218
219
220
221
222

workdir="${TMPDIR:-/tmp}/build-fossil-static.$(random)"
mkdir -p "${workdir}" || exit 1
trap cleanup EXIT

function cleanup() {
	if [ -n "${workdir}" ]; then
		rm -rf "${workdir}"
		workdir=''
	fi
}

# Begin the build
retval='0'