Say git submodule update --init - it's shorter.

This commit is contained in:
Ben Sturmfels 2021-03-09 22:21:58 +11:00
parent 40bc5ea9ee
commit 1f4ac7249f
4 changed files with 5 additions and 9 deletions

View File

@ -5,5 +5,4 @@ set -e
aclocal -I m4 --install aclocal -I m4 --install
autoreconf -fvi autoreconf -fvi
git submodule init git submodule update --init
git submodule update

View File

@ -265,8 +265,7 @@ support. This will result in a much smaller list of dependencies.
pdf.js relies on git submodules, so be sure you have fetched them:: pdf.js relies on git submodules, so be sure you have fetched them::
$ git submodule init $ git submodule update --init
$ git submodule update
This feature has been tested on Fedora with: This feature has been tested on Fedora with:
poppler-utils-0.20.2-9.fc18.x86_64 poppler-utils-0.20.2-9.fc18.x86_64

View File

@ -114,8 +114,7 @@ FAQ
Use it just like a snapshotted extlib directory. When a new clone of mediagoblin Use it just like a snapshotted extlib directory. When a new clone of mediagoblin
is made you need to run is made you need to run
git submodule init git submodule update --init
git submodule update
As noted in HackingHowto As noted in HackingHowto

View File

@ -41,12 +41,11 @@
;;; use guix -l guix-env.scm ;;; use guix -l guix-env.scm
;;; ;;;
;;; To set things up for the first time, you'll also need to run: ;;; To set things up for the first time, you'll also need to run:
;;; git submodule init ;;; git submodule update --init
;;; git submodule update
;;; ./bootstrap.sh ;;; ./bootstrap.sh
;;; ./configure --without-virtualenv ;;; ./configure --without-virtualenv
;;; make ;;; make
;;; python3 -m venv --system-site-packages . && bin/python setup.py develop --no-deps ;;; python3 -m venv --system-site-packages . && bin/python setup.py develop --no-deps
;;; bin/python -m pip install --force-reinstall PasteScript # workaround ;;; bin/python -m pip install --force-reinstall PasteScript # workaround
;;; bin/python -m pip install 'werkzeug<1.0.0' # workaround (also disabled below) ;;; bin/python -m pip install 'werkzeug<1.0.0' # workaround (also disabled below)
;;; bin/python -m pip install 'email-validator' # email-validator ;;; bin/python -m pip install 'email-validator' # email-validator