From 287efab2574e57f9dc079bcbae83be99ae6955e2 Mon Sep 17 00:00:00 2001 From: Justin Hawkins Date: Sun, 7 Feb 2021 22:05:16 +1030 Subject: [PATCH] We no longer create a .bat file. --- build-release.pl | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/build-release.pl b/build-release.pl index b9a9a4c..72dbde5 100755 --- a/build-release.pl +++ b/build-release.pl @@ -39,15 +39,5 @@ foreach my $type (keys %build) { } sub add_extras { - # bat file for windows - - open (my $fh, ">", "release/win/dau.bat") || die $!; - print $fh 'set WEBHOOK_URL=https://yourdiscordwebhookURLhere' . "\r\n"; - print $fh 'set SCREENSHOTS="C:\your\screenshot\directory\here"' ."\r\n"; - print $fh 'set USERNAME="Posted by Joe Bloggs"' . "\r\n"; - print $fh 'set WATCH=10' . "\r\n"; - - print $fh 'dau.exe --webhook %WEBHOOK_URL% --directory %SCREENSHOTS% --username %USERNAME% --watch %WATCH%' . "\r\n"; - print $fh 'pause' . "\r\n"; - close $fh; + # we used to have a .bat file here, but no longer needed }