Skip to content

Commit

Permalink
Fix Upload Path.
Browse files Browse the repository at this point in the history
  • Loading branch information
ElementalCrisis authored Oct 8, 2024
1 parent def62c7 commit 457f369
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/UploadArchive.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ $ftp_server = $env:FTP_SERVER;
$current = [string](Get-Location);
$client = New-Object System.Net.WebClient;
$client.Credentials = New-Object System.Net.NetworkCredential($user, $password);
$client.UploadFile([string]($ftp_server) + "/shoko-server/daily/" + $filename, [string]($current) + "\\ShokoServer.zip");
$client.UploadFile([string]($ftp_server) + "/files/shoko-server/daily/" + $filename, [string]($current) + "\\ShokoServer.zip");

0 comments on commit 457f369

Please sign in to comment.