summary refs log tree commit diff
path: root/mp.sh
diff options
context:
space:
mode:
authorDruid520 <r.ustydruid520@proton.me>2026-08-15 14:02:00 -0700
committerDruid520 <r.ustydruid520@proton.me>2026-08-15 14:02:00 -0700
commit9b780c943f304c9e45a4a119730c7aa9df9284b9 (patch)
tree43b38f3551adbe872e2cfa65ba60fa4fd9fba540 /mp.sh
parent05aefd461c18a4c16a98c18f8218ff8494b80577 (diff)
DEL: fix --depth 1.
Diffstat (limited to 'mp.sh')
-rwxr-xr-xmp.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/mp.sh b/mp.sh index f8fd016..9596b25 100755 --- a/mp.sh +++ b/mp.sh
@@ -30,7 +30,7 @@ mp_init() {
30 return 30 return
31 fi 31 fi
32 war "uninitialized, initializing." 32 war "uninitialized, initializing."
33 git clone "$PORTS_REPO" "$PORTS_DIR" --depth 1 || die "failed cloning $PORTS_REPO to $PORTS_DIR." 33 git clone "$PORTS_REPO" "$PORTS_DIR" || die "failed cloning $PORTS_REPO to $PORTS_DIR."
34 mkdir -p "$WD" || die "failed making $WD." 34 mkdir -p "$WD" || die "failed making $WD."
35 touch "$STATUS" "$INSTALLED" "$EXTINSTALLED" || die "failed making $STATUS, $INSTALLED, $EXTINSTALLED." 35 touch "$STATUS" "$INSTALLED" "$EXTINSTALLED" || die "failed making $STATUS, $INSTALLED, $EXTINSTALLED."
36} 36}