diff --git a/app/components/Installation.tsx b/app/components/Installation.tsx index 4accacc..0c75354 100644 --- a/app/components/Installation.tsx +++ b/app/components/Installation.tsx @@ -18,8 +18,8 @@ source ~/.zshrc # For tcsh: source ~/.tcshrc` - const verifyCode = `abc --version -abc hi` + const verifyCode = `abc hi +abc --version` return (
@@ -27,7 +27,7 @@ abc hi` {/* Installation Steps */}
-

Install the latest version from GitHub using pipx

+

Install the latest version of abc from GitHub using pipx

             {installationCode}
@@ -44,7 +44,7 @@ abc hi`
 
       {/* Reload your shell configuration */}
       
-

Reload your shell configuration

+

Reload your shell configuration to enable abc command

             {afterInstallCode}
@@ -61,7 +61,7 @@ abc hi`
 
       {/* Verification */}
       
-

Verify Installation

+

Verify abc Installation

             {verifyCode}
diff --git a/app/components/OpenSource.tsx b/app/components/OpenSource.tsx
index 3fcbe1b..c9a7f09 100644
--- a/app/components/OpenSource.tsx
+++ b/app/components/OpenSource.tsx
@@ -7,7 +7,7 @@ export default function OpenSource() {
       
  • - Written by Claude 3.5 Sonnet + Written by Anthropic Claude 3.5 Sonnet
  • diff --git a/install-script-header.txt b/install-script-header.txt index 9ddd59c..552302e 100644 --- a/install-script-header.txt +++ b/install-script-header.txt @@ -2,7 +2,7 @@ bash -c ' tmp_dir=$(mktemp -d) && trap "rm -rf \"$tmp_dir\"" EXIT && - echo "Downloading the latest abc install script from Eric Hammond\'s Alestic organization on GitHub" && + echo "Downloading the latest abc install script from the Alestic organization (Eric Hammond) on GitHub" && curl -fsSL https://raw.githubusercontent.com/alestic/abc/refs/heads/main/install_from_github.sh \ -o "$tmp_dir/abc_install.sh" && chmod +x "$tmp_dir/abc_install.sh" &&