Fixing nextcloud link.

This commit is contained in:
sergiotarxz 2022-07-07 19:58:05 +02:00
parent 1b46ea3355
commit 8a87610caf
2 changed files with 2 additions and 10 deletions

View File

@ -17,4 +17,4 @@ sudo meson install -C build
#### Windows
Download from [here](https://nextcloud.sergiotarxz.freemyip.com/index.php/s/4286LoZ5XHzY3J4) the lastest version.
Download from [here](https://nextcloud.sergiotarxz.freemyip.com/index.php/s/inNRCWyzBdSEZTF) the lastest version.

View File

@ -23,16 +23,8 @@ create_executable();
sub create_executable {
my $zip = path('recuento.7z');
my $config = path('config.txt');
my $executable = path('recuento.exe');
my $config_txt_contents = <<'EOF';
;!@Install@!UTF-8!
Title="Recuento"
RunProgram="recuento\Recuento.exe"
;!@InstallEnd@!
EOF
$config->spew_utf8($config_txt_contents);
open my $fh, '-|', qw@cat /usr/bin/7zS2.sfx@, $zip;
open my $fh, '-|', qw@cat /usr/x86_64-w64-mingw32/usr/bin/7zS2.sfx.exe@, $zip;
binmode $fh, ':raw';
my $executable_contents = join '', <$fh>;
$executable->spew($executable_contents);