From 3534b282aff9c4375bfad5ccdfbd1ce208f1129a Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Sun, 29 Mar 2026 17:44:58 -0500 Subject: [PATCH] =?UTF-8?q?Fix=20wgrib2=20error=20message=20=E2=80=94=20no?= =?UTF-8?q?=20homebrew=20formula=20exists?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/microwaveprop/weather/hrrr_client.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/microwaveprop/weather/hrrr_client.ex b/lib/microwaveprop/weather/hrrr_client.ex index 012b6d17..133d3f28 100644 --- a/lib/microwaveprop/weather/hrrr_client.ex +++ b/lib/microwaveprop/weather/hrrr_client.ex @@ -197,7 +197,7 @@ defmodule Microwaveprop.Weather.HrrrClient do defp extract_point(grib_binary, lat, lon) do case System.find_executable("wgrib2") do nil -> - {:error, "wgrib2 not found in PATH. Install via: brew install wgrib2"} + {:error, "wgrib2 not found in PATH. Build from source: https://www.cpc.ncep.noaa.gov/products/wesley/wgrib2/"} wgrib2_path -> tmp_dir = System.tmp_dir!()