Added the GPL copypasta to the main file
This commit is contained in:
parent
bbd11a98dd
commit
2c7e7fd5c3
1 changed files with 14 additions and 1 deletions
15
peertube-cli
15
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 <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";
|
||||
|
|
Loading…
Add table
Reference in a new issue