scripts/src/update-submodules
Maciej Barć 917dd8f982
src/*: add headers where appropriate
Signed-off-by: Maciej Barć <xgqt@protonmail.com>
2020-12-22 01:52:05 +01:00

21 lines
324 B
Bash
Executable File

#!/bin/sh
# Original author: XGQT
# Licensed under the ISC License
# Copyright (c) 2020, src_prepare group
trap 'exit 128' INT
export PATH
git submodule update --init --recursive
git submodule update --remote --merge
git add .
git commit --signoff --message="submodules update"
git pull --verbose
git push --verbose