Unverified Commit 1c6ddb10 authored by Tom Hunze's avatar Tom Hunze
Browse files

supabase-cli: don't update to pre-releases

parent 1fc0bdcd
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; {