From 2c7e7fd5c34758356797b370f74d024487d5d7ef Mon Sep 17 00:00:00 2001 From: qorg11 Date: Wed, 17 Nov 2021 09:06:12 +0100 Subject: [PATCH] Added the GPL copypasta to the main file --- peertube-cli | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/peertube-cli b/peertube-cli index 090ac80..62f757d 100755 --- a/peertube-cli +++ b/peertube-cli @@ -1,5 +1,18 @@ #!/usr/bin/perl +# 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 . + # peertube-cli # A peertube cli client. # author: qorg11 @@ -144,7 +157,7 @@ sub select_video($) { $config{instance} = $prompt_input; $config{instance} =~ s/^:i //; return -1; - } elsif(looks_like_number $prompt_input) { + } elsif (looks_like_number $prompt_input) { return $videos_data[$prompt_input]->{uuid}; } else { print colored['bold'], "Don't know what you meant.\n";