Overview
Comment: | Removed extraneous debugging |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | tcl-ops |
Files: | files | file ages | folders |
SHA1: | ed1bf1669b804785dd1e394b489d1a950bcd1c98 |
User & Date: | rkeene on 2014-11-07 07:15:51 |
Other Links: | manifest | tags |
Context
2014-11-07
| ||
07:17 | Updated Makefile check-in: a6cb122222 user: rkeene tags: tcl-ops | |
07:15 | Removed extraneous debugging check-in: ed1bf1669b user: rkeene tags: tcl-ops | |
07:15 | Clarified --cachedir check-in: 684f97bc4e user: rkeene tags: tcl-ops | |
Changes
Modified appfs-cache from [b7083177d4] to [f56f48d37a].
1 2 3 4 5 6 7 8 9 10 11 |
#! /usr/bin/env bash
set -x
appfsd_options=()
if [ "$1" == "--cachedir" ]; then
appfsd_options=("${appfsd_options[@]}" '--cachedir' "$2")
shift; shift;
fi
|
< < |
1 2 3 4 5 6 7 8 9 |
#! /usr/bin/env bash appfsd_options=() if [ "$1" == "--cachedir" ]; then appfsd_options=("${appfsd_options[@]}" '--cachedir' "$2") shift; shift; fi |