summaryrefslogtreecommitdiff
path: root/update-submodule
blob: e1ea58aa8205e20d3e4991305a4e707c4a817ed3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

pkgSrcDir="$1"
submoduleDir="$2"
url="$3"
path="${url%% *}"
url="${url#${path} }"

if [ -n "$(ls -A "${path}")" ]; then
  git -C "${pkgSrcDir}" submodule update 2>/dev/null || true
  exit
fi
mkdir -p "${path}"
if [ -n "${submoduleDir}" ]; then
  upstream="${submoduleDir}/${path}"
  if [ ! -d "${upstream}" ]; then
    git clone -q "${url}" "${upstream}"
  fi
else
  upstream="${pkgSrcDir}/${path}"
fi
git -C "${upstream}" pull -q --ff-only
git clone -q "${upstream}" "${path}"