From: Kaz Wesley Date: Sat, 3 Feb 2018 05:12:35 +0000 (-0800) Subject: Add missing boilerplate to shell script X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;h=6e243257ea36c81b05fce32f9461f98c4f3da898;p=muddle-interpreter.git Add missing boilerplate to shell script Signed-off-by: Kaz Wesley --- diff --git a/src/test_oblists b/src/test_oblists index 7ce5674..6afc979 100755 --- a/src/test_oblists +++ b/src/test_oblists @@ -1,5 +1,21 @@ #!/bin/sh +# Copyright (C) 2018 Keziah Wesley + +# You can redistribute and/or modify this file under the terms of the +# GNU Affero General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any +# later version. + +# This file is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Affero General Public License for more details. + +# You should have received a copy of the GNU Affero General Public +# License along with this file. If not, see +# . + assert_eq () { [ "$1" = "$2" ] || ( echo Assertion failed: "\"$1\"" = "\"$2\""; exit 1 ) }