From: Johannes Schindelin Date: Fri, 17 Feb 2006 14:22:45 +0000 (+0100) Subject: Fix cpio call X-Git-Tag: v1.3.0-rc1~166^2~7 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=8e1618f9612a78ea09b2a926797c781fe06027c9;p=git.git Fix cpio call To some cpio's, -a and -m options are mutually exclusive. Use only -m. Signed-off-by: Johannes E. Schindelin Signed-off-by: Junio C Hamano --- diff --git a/git-clone.sh b/git-clone.sh index e192b08c..cf410faa 100755 --- a/git-clone.sh +++ b/git-clone.sh @@ -153,7 +153,7 @@ yes,yes) fi && rm -f "$GIT_DIR/objects/sample" && cd "$repo" && - find objects -depth -print | cpio -puamd$l "$GIT_DIR/" || exit 1 + find objects -depth -print | cpio -pumd$l "$GIT_DIR/" || exit 1 ;; yes) mkdir -p "$GIT_DIR/objects/info"