Differences From Artifact [b7083177d4]:
- Executable file appfs-cache — part of check-in [ddd31f22a4] at 2014-11-07 07:14:28 on branch tcl-ops — Added a "--cachedir" option for use when not using FUSE and added the same option to "appfs-cache" (user: rkeene, size: 1998) [annotate] [blame] [check-ins using]
To Artifact [f56f48d37a]:
- Executable file appfs-cache — part of check-in [ed1bf1669b] at 2014-11-07 07:15:51 on branch tcl-ops — Removed extraneous debugging (user: rkeene, size: 1990) [annotate] [blame] [check-ins using] [more...]
1 1 #! /usr/bin/env bash 2 2 3 -set -x 4 - 5 3 appfsd_options=() 6 4 if [ "$1" == "--cachedir" ]; then 7 5 appfsd_options=("${appfsd_options[@]}" '--cachedir' "$2") 8 6 9 7 shift; shift; 10 8 fi 11 9