From ca8ecfaeb455eecc1e77cbbe3071c9ab41a857ab Mon Sep 17 00:00:00 2001 From: "flow.gunso" Date: Mon, 18 Mar 2019 19:10:05 +0100 Subject: [PATCH] Add GPLv3 headers --- utils/publish/production.sh | 16 ++++++++++++++++ utils/publish/staging.sh | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/utils/publish/production.sh b/utils/publish/production.sh index 89eefc0..62d368f 100755 --- a/utils/publish/production.sh +++ b/utils/publish/production.sh @@ -1,5 +1,21 @@ #!/bin/bash +# Docker Seafile client, help you mount a Seafile library as a volume. +# Copyright (C) 2019, flow.gunso@gmail.com +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + # Restrict production build to tag matching MAJOR.MINOR.REVISION. if ! [[ "$CI_COMMIT_TAG" =~ ^[0-9]+[.][0-9]+[.][0-9]+$ ]]; then echo "Version number must match major.minor.revision!" diff --git a/utils/publish/staging.sh b/utils/publish/staging.sh index 9d7735a..de1ba3c 100755 --- a/utils/publish/staging.sh +++ b/utils/publish/staging.sh @@ -1,5 +1,21 @@ #!/bin/bash +# Docker Seafile client, help you mount a Seafile library as a volume. +# Copyright (C) 2019, flow.gunso@gmail.com +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + # Just build and push as staging. docker build -t $CI_REGISTRY_IMAGE:staging . docker push $CI_REGISTRY_IMAGE:staging \ No newline at end of file