Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/tools/dev/update_gem_licenses.sh
21467 views
1
#!/bin/sh
2
3
# This script regenerates the LICENSE_GEMS file with the current gem licenses.
4
# It should be run automatically whenever Metasploit cuts a new release itself.
5
6
echo "This file is auto-generated by tools/dev/update_gem_licenses.sh" > LICENSE_GEMS
7
bundle exec license_finder | grep , >> LICENSE_GEMS
8
9