Home | History | Annotate | Download | only in tools
      1 #!/bin/sh
      2 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
      3 cd $DIR/..
      4 ./libc/tools/generate-NOTICE.py libc libdl libm linker libstdc++ > libc/NOTICE
      5 
      6 git diff --exit-code HEAD libc/NOTICE
      7 exit $?
      8