Skip to content

Commit

Permalink
ci: Check for submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
cvengler committed Feb 10, 2020
1 parent 6d0e532 commit 2a95c7c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions test/lint/lint-submodule.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/usr/bin/env bash
#
# Copyright (c) 2020 The Bitcoin Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
#
# This script checks for git modules
export LC_ALL=C
EXIT_CODE=0

CMD=$(git submodule status --recursive)
if test -n "$CMD";
then
echo These submodules were found, delete them:
echo "$CMD"
EXIT_CODE=1
fi

exit $EXIT_CODE

0 comments on commit 2a95c7c

Please sign in to comment.