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 6echo "This file is auto-generated by tools/dev/update_gem_licenses.sh" > LICENSE_GEMS 7bundle exec license_finder | grep , >> LICENSE_GEMS 8 9