Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.3-rc2 12 lines 323 B view raw
1#!/bin/sh 2 3for PYTHON in python2 python3; do 4 # run check on a text and a binary file 5 for FILE in Makefile Documentation/logo.gif; do 6 $PYTHON scripts/spdxcheck.py $FILE 7 $PYTHON scripts/spdxcheck.py - < $FILE 8 done 9 10 # run check on complete tree to catch any other issues 11 $PYTHON scripts/spdxcheck.py > /dev/null 12done