Merge pull request #1367 from brettabamonte/fix_lastpass_err_msg_typo

Fix LastPass error message typo
This commit is contained in:
Donal McBreen
2025-01-20 11:43:33 +00:00
committed by GitHub

View File

@@ -24,7 +24,7 @@ class Kamal::Secrets::Adapters::LastPass < Kamal::Secrets::Adapters::Base
end
if (missing_items = secrets - results.keys).any?
raise RuntimeError, "Could not find #{missing_items.join(", ")} in LassPass"
raise RuntimeError, "Could not find #{missing_items.join(", ")} in LastPass"
end
end
end