Added the GPL copypasta to the main file

This commit is contained in:
qorg11 2021-11-17 09:06:12 +01:00
parent bbd11a98dd
commit 2c7e7fd5c3
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -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 <https://www.gnu.org/licenses/>.
# 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";