summaryrefslogtreecommitdiff
path: root/ci/make-git-snapshot.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ci/make-git-snapshot.sh')
-rwxr-xr-xci/make-git-snapshot.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/ci/make-git-snapshot.sh b/ci/make-git-snapshot.sh
index acfdd6c2..ee67a5b3 100755
--- a/ci/make-git-snapshot.sh
+++ b/ci/make-git-snapshot.sh
@@ -11,9 +11,7 @@ PKG_VER="${name}-${version}"
TARFILE=${PKG_VER}.tar
TARFILE_TMP=${TARFILE}.tmp
-if ! test -f ${TOP}/libglnx/README.md || ! test -f ${TOP}/bsdiff/README.md; then
- git submodule update --init
-fi
+git submodule update --init
echo "Archiving ${PKG_VER} at ${GITREV} to ${TARFILE_TMP}"
(cd ${TOP}; git archive --format=tar --prefix=${PKG_VER}/ ${GITREV}) > ${TARFILE_TMP}