check.sh 394 B

1234567891011
  1. # Check for missing licence files
  2. # http://creadur.apache.org/rat/apache-rat/index.html
  3. # Dump with RAT into a file
  4. # For apps, desktop/core/src, desktop/libs
  5. java -jar apache-rat-0.9.jar -d build/release/prod/hue-2.5.0/apps -E tools/rat/.rat-excludes > dump.txt
  6. # Then grep and filter ou false positive
  7. egrep "^ /home.*py$" dump.txt | egrep -v "migrations|gen-py|management|examples"