Skip to content

Commit

Permalink
Fixed copy/paste error (#258)
Browse files Browse the repository at this point in the history
* Fixed copy/paste error

* fixing a brainfart

---------

Co-authored-by: Matt Pannella <[email protected]>
  • Loading branch information
hallem and mattpannella authored Feb 18, 2024
1 parent f5d7f62 commit 6232767
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,19 +54,19 @@ jobs:
# Pack files
if [ "${{ matrix.target }}" == "win" ]; then
# Pack to zip for Windows
7z a -tzip "pupdate_win.zip" "./${release_name}/pupdate.exe" "./${release_name}/pocket_extras.json"
7z a -tzip "pupdate_win.zip" "./${release_name}/pupdate.exe"
elif [ "${{ matrix.target }}" == "osx" ]; then
cd $release_name
lipo -create -output pupdate pupdate_arm64 pupdate_x64
rm pupdate_arm64
rm pupdate_x64
zip "../pupdate_mac.zip" "pupdate" "pocket_extras.json"; cd ..;
zip "../pupdate_mac.zip" "pupdate"; cd ..;
else
cd $release_name
mv pupdate_x64 pupdate
zip "../pupdate_linux.zip" "pupdate" "pocket_extras.json"
zip "../pupdate_linux_arm64.zip" "pupdate_arm64" "pocket_extras.json"
zip "../pupdate_linux_arm32.zip" "pupdate_arm32" "pocket_extras.json"
zip "../pupdate_linux.zip" "pupdate"
zip "../pupdate_linux_arm64.zip" "pupdate_arm64"
zip "../pupdate_linux_arm32.zip" "pupdate_arm32"
cd ..
fi
Expand Down
2 changes: 1 addition & 1 deletion src/services/PocketExtrasService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace Pannella.Services;
[UnconditionalSuppressMessage("Trimming", "IL2026:Members annotated with 'RequiresUnreferencedCodeAttribute' require dynamic access otherwise can break functionality when trimming application code", Justification = "<Pending>")]
public class PocketExtrasService : BaseService
{
private const string END_POINT = "https://raw.githubusercontent.com/mattpannella/pupdate/main/blacklist.json";
private const string END_POINT = "https://raw.githubusercontent.com/mattpannella/pupdate/main/pocket_extras.json";

public static async Task<List<PocketExtra>> GetPocketExtrasList()
{
Expand Down

0 comments on commit 6232767

Please sign in to comment.