mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-22 20:35:37 +00:00
8 lines
201 B
Bash
Executable file
8 lines
201 B
Bash
Executable file
#!/bin/bash
|
|
|
|
for f in BuildOutput/NugetPackages/*.nupkg
|
|
do
|
|
echo "Processing $f..."
|
|
mono tools/nuget.exe push -Verbosity detailed -Source https://www.nuget.org/api/v2/package "$f" $NUGETAPIKEY
|
|
done
|