From 0d8fc86fac61d251b066c383f56d96821dfd22a6 Mon Sep 17 00:00:00 2001 From: Nick Titomichelakis Date: Tue, 28 Sep 2021 08:03:05 -0700 Subject: [PATCH] Fix for --help man page --- src/modules/setIcon/setIcon.command.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/setIcon/setIcon.command.ts b/src/modules/setIcon/setIcon.command.ts index 728bedd..4182067 100644 --- a/src/modules/setIcon/setIcon.command.ts +++ b/src/modules/setIcon/setIcon.command.ts @@ -28,16 +28,16 @@ export const setIconCommand: Command = { { desc: 'set the app icon for both devices', cmd: - 'react-native set-icon --path --background ', + 'react-native set-icon --path --background ', }, { desc: 'set the app icon for iOS', cmd: 'react-native set-icon --platform ios --path ', }, { - desc: 'set the app icon for both devices', + desc: 'set the app icon for Android', cmd: - 'react-native set-icon --platform android --path --background ', + 'react-native set-icon --platform android --path --background ', }, ], };