#! /bin/bash

# This is the verification script. It runs on every "build" of the AASA file.
# Right now it simply checks to make sure the JSON is valid. Additional validation
# should be added through this file.

set -e -o pipefail

jsonlint -q apple-app-site-association 2>&1 | tee json-validation-outcome
