nimbus-build-system/scripts/add_submodule.sh

21 lines
669 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2019-08-20 21:14:45 +00:00
2020-06-14 17:12:27 +00:00
# Copyright (c) 2018-2020 Status Research & Development GmbH. Licensed under
2019-08-20 21:14:45 +00:00
# either of:
# - Apache License, version 2.0
# - MIT license
# at your option. This file may not be copied, modified, or distributed except
# according to those terms.
[ -z "$1" -o `echo "$1" | tr '/' '\n' | wc -l` != 2 ] && \
2020-06-14 17:12:27 +00:00
{ echo "Usage: `basename $0` some/repo [destdir] # 'destdir' defaults to 'vendor/repo'"; exit 1; }
2019-08-20 21:14:45 +00:00
REPO="$1"
DEST="vendor/${REPO#*/}"
[ -n "$2" ] && DEST="$2"
git submodule add --force https://github.com/${REPO}.git "$DEST"
git config -f .gitmodules submodule.${DEST}.ignore dirty
git config -f .gitmodules submodule.${DEST}.branch master