1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 06:02:11 +02:00
cdt/releng/scripts/check_code_cleanliness.sh
Jonah Graham d1a15ef473 Bug 558827: Add cleanliness check for features
Change-Id: Id25d340506210206dcd8f0ce93f2e01a041d4e1e
2020-01-09 15:11:35 -05:00

20 lines
615 B
Bash
Executable file

#!/bin/bash
set -e
##
# Check the features are all branded
##
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
${DIR}/check_features.sh
##
# The script is shared by all the CDT projects. When running
# local edits, you can, for example, do:
# SCRIPT_URL=file:///scratch/eclipse/src/cdt/cdt-infra/scripts/check_code_cleanliness.sh ./check_code_cleanliness.sh
##
: ${SCRIPT_URL:=https://raw.githubusercontent.com/eclipse-cdt/cdt-infra/master/scripts/check_code_cleanliness.sh}
export COREPROJECT=core/org.eclipse.cdt.core
echo Obtaining check_code_cleanliness.sh from $SCRIPT_URL
curl -sL $SCRIPT_URL | bash