aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitch Riedstra <mitch@riedstra.us>2019-12-14 09:56:59 -0500
committerMitch Riedstra <mitch@riedstra.us>2019-12-14 09:56:59 -0500
commit8b6467bde7e603e60e128001c3b5e43b1034c561 (patch)
tree9c63757a3546f13f346b75586ddc18dd9e384a46
parentb2056fbf48849e321389977e3fdbb0f5841822c4 (diff)
downloadgo-website-8b6467bde7e603e60e128001c3b5e43b1034c561.tar.gz
go-website-8b6467bde7e603e60e128001c3b5e43b1034c561.tar.xz
Add a license to the project and version informationv0.0.1
-rw-r--r--LICENSE13
-rwxr-xr-x[-rw-r--r--]build.sh9
2 files changed, 20 insertions, 2 deletions
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..da80510
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,13 @@
+Copyright 2019 Mitchell Riedstra
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
+LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
+OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+PERFORMANCE OF THIS SOFTWARE.
diff --git a/build.sh b/build.sh
index e8630f3..1320fdf 100644..100755
--- a/build.sh
+++ b/build.sh
@@ -1,8 +1,13 @@
#!/bin/sh
-set -x
set -e
-version="$(git log --format="%h %d" -1)"
+LICENSE="$(cat LICENSE)"
+
+version="$(git log --format="%h %d" -1)
+Source code can be found here:
+https://git.riedstra.us/mitch/go-website.git
+
+$LICENSE"
if ! git diff-index --quiet HEAD ; then
version="dirty: $version"