1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 14:12:10 +02:00
cdt/releng/scripts/check_code_cleanliness.sh
Jonah Graham f710eabea8 Bug 553231: Move core of script to cdt-infra
Change-Id: I05c1454ade47423d3eb8b20c63ad2bc8d2b800fb
2019-11-19 15:43:33 -05:00

14 lines
492 B
Bash
Executable file

#!/bin/bash
set -e
##
# 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