Closed varrunr closed 11 years ago
FYI, the script has not been added to the repo. Create a new issue to add metadata.
Cool! If I read it properly, this script removes the license by chopping the first few lines of each python file. Does this need to be tested or can we directly merge the pull request? It says that the pull request can be automatically merged.
I just reversed the script which inserted the license which was
$ cat LICENSE.txt
targetfiles=$(grep -lr --include *.py "Redistribution and use of the software" webapp) for f in $targetfiles do if [ $f != "./LICENSE.txt" ]; then sed '1,29d' $f > temp mv temp $f fi done