#!/bin/bash # Copyright 2020 Netsyms Technologies. # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. echo "Generating credits files..." cd www yarn licenses generate-disclaimer > ../license-credits.md cd .. yarn licenses generate-disclaimer >> license-credits.md cp www/pages/credits.template.html www/pages/credits.html sed -e "/{{credits}}/r license-credits.md" -e "/{{credits}}/d" -i www/pages/credits.html