Unverified Commit 0441ffc9 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

supabase-cli: don't update to pre-releases (#462529)

parents cf995097 1c6ddb10
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -46,7 +46,11 @@ buildGoModule rec {
    tests.version = testers.testVersion {
      package = supabase-cli;
    };
    updateScript = nix-update-script { };
    updateScript = nix-update-script {
      # Fetch versions from GitHub releases to detect pre-releases and
      # avoid updating to them.
      extraArgs = [ "--use-github-releases" ];
    };
  };

  meta = with lib; {