From a4bf334a676aba47f5e327673f3a2132b4f61257 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jer=C3=B3nimo=20Albi?= Date: Fri, 12 Jan 2024 00:37:51 +0100 Subject: [PATCH] chore: change Ignite App extension to "ign" (#3877) --- changelog.md | 4 ++++ ignite/services/plugin/plugin.go | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 5db8239aac..81bc190360 100644 --- a/changelog.md +++ b/changelog.md @@ -7,6 +7,10 @@ - [#3867](https://github.com/ignite/cli/pull/3867) Fix genesis export for ibc modules. - [#3869](https://github.com/ignite/cli/pull/3869) Fix .git in parent dir +### Changes + +- [#3877](https://github.com/ignite/cli/pull/3877) Change Ignite App extension to "ign" + ## [`v28.1.0`](https://github.com/ignite/cli/releases/tag/v28.1.0) ### Features diff --git a/ignite/services/plugin/plugin.go b/ignite/services/plugin/plugin.go index a3ec58cf66..059d3367fd 100644 --- a/ignite/services/plugin/plugin.go +++ b/ignite/services/plugin/plugin.go @@ -202,7 +202,7 @@ func (p Plugin) Manifest() *Manifest { } func (p Plugin) binaryName() string { - return fmt.Sprintf("%s.app", p.name) + return fmt.Sprintf("%s.ign", p.name) } func (p Plugin) binaryPath() string {