Skip to content

Commit 6adaf6d

Browse files
committed
fix for app name
1 parent 65c3bb1 commit 6adaf6d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build-config/signing/app/manifest.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
type: :app # no need to change this for .pkg, .dmg and executables
22
os: :osx
3-
name: Kiro-Cli.app
3+
name: Kiro CLI.app
44
outputs:
55
- label: macos
6-
path: Kiro-Cli.app
6+
path: Kiro CLI.app
77
app:
88
:identifier: com.amazon.codewhisperer # this has to be same as Bundle identifier value in info.plist
99
signing_requirements:

crates/fig_util/src/consts.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pub const APP_BUNDLE_ID: &str = "com.amazon.codewhisperer";
2-
pub const APP_BUNDLE_NAME: &str = "Kiro-Cli.app";
2+
pub const APP_BUNDLE_NAME: &str = "Kiro CLI.app";
33

44
#[cfg(target_os = "macos")]
55
pub const APP_PROCESS_NAME: &str = "kiro_cli_desktop";

crates/fig_util/src/directories.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ mod tests {
717717
#[test]
718718
fn snapshot_themes_dir() {
719719
linux!(themes_dir(&Context::new()), @"/usr/share/fig/themes");
720-
macos!(themes_dir(&Context::new()), @"/Applications/Kiro-Cli.app/Contents/Resources/themes");
720+
macos!(themes_dir(&Context::new()), @"/Applications/Kiro CLI.app/Contents/Resources/themes");
721721
windows!(themes_dir(&Context::new()), @r"C:\Users\$USER\AppData\Local\AmazonQ\resources\themes");
722722
}
723723

0 commit comments

Comments
 (0)