Skip to content

Commit cd04205

Browse files
Update src/commands/mobile_app/upload.rs
Co-authored-by: Daniel Szoke <7881302+szokeasaurusrex@users.noreply.github.com>
1 parent 620bce8 commit cd04205

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/commands/mobile_app/upload.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ use crate::utils::vcs;
3232

3333
pub fn make_command(command: Command) -> Command {
3434
#[cfg(target_os = "macos")]
35-
let help_text = "The path to the mobile app files to upload. Supported files include Apk, Aab, XCArchive, and IPA.";
35+
const HELP_TEXT: &str = "The path to the mobile app files to upload. Supported files include Apk, Aab, XCArchive, and IPA.";
3636
#[cfg(not(target_os = "macos"))]
37-
let help_text = "The path to the mobile app files to upload. Supported files include Apk, Aab, and XCArchive.";
37+
const HELP_TEXT: &str = "The path to the mobile app files to upload. Supported files include Apk, Aab, and XCArchive.";
3838
command
3939
.about("[EXPERIMENTAL] Upload mobile app files to a project.")
4040
.org_arg()

0 commit comments

Comments
 (0)