Sha256: 63b8921aafa400f788a0c0f6dfd6a4ec65f0b04ccff4b0058e43a6bd5213e372
Contents?: true
Size: 440 Bytes
Versions: 11
Compression:
Stored size: 440 Bytes
Contents
#!/bin/sh # # Vendors the full list of US .gov domains from https://github.com/GSA/data # Usage: script/vendor-gov-list # Set up mkdir tmp rm -Rf tmp/gsa-data # Vendor the last file in the dotgov-domains folder that ends in `-full.csv` git clone https://github.com/GSA/data tmp/gsa-data pattern="tmp/gsa-data/dotgov-domains/*-full.csv" files=( $pattern ) cp -f "${files[@]:(-1)}" config/vendor/dotgovs.csv # Clean up rm -Rf tmp/gsa-data
Version data entries
11 entries across 11 versions & 1 rubygems