UNPKG

291 BPlain TextView Raw
1#!/usr/bin/env bash
2
3set -ex
4
5if [[ ! -z "$GIT_EMAIL" ]] & [[ ! -z "$GIT_USERNAME" ]]; then
6 git config --global push.default simple
7 git config --global user.email "$GIT_EMAIL"
8 git config --global user.name "$GIT_USERNAME"
9fi
10
11git submodule sync
12git submodule update --init --recursive