diff options
author | 2022-01-02 03:09:51 -0800 | |
---|---|---|
committer | 2022-01-02 03:09:51 -0800 | |
commit | 7f3384600550c65d38f6855e0fc8d919a624b31e (patch) | |
tree | f00549eb7469b3856f3ac6a296df808c8915f0fd /.devcontainer/scripts/getting-started.sh | |
parent | 4afda10b82af917fb93284e24ea41d103310f245 (diff) | |
download | bun-7f3384600550c65d38f6855e0fc8d919a624b31e.tar.gz bun-7f3384600550c65d38f6855e0fc8d919a624b31e.tar.zst bun-7f3384600550c65d38f6855e0fc8d919a624b31e.zip |
copy: replace Bun with bun (#99)
Most CLI tools have the style convention of referring to themselves in
lowercase. It is, after all, the name that users type in when using
the tool. This PR maintains that convention in bun.
"Drop the uppercase B, it's cleaner"
Diffstat (limited to '.devcontainer/scripts/getting-started.sh')
-rw-r--r-- | .devcontainer/scripts/getting-started.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.devcontainer/scripts/getting-started.sh b/.devcontainer/scripts/getting-started.sh index ee66dd91f..aeef96865 100644 --- a/.devcontainer/scripts/getting-started.sh +++ b/.devcontainer/scripts/getting-started.sh @@ -1,6 +1,6 @@ #!/bin/bash -echo "To get started, login to GitHub and clone Bun's GitHub repo into /workspaces/bun" +echo "To get started, login to GitHub and clone bun's GitHub repo into /workspaces/bun" echo "Make sure to login with a Personal Access Token" echo "# First time setup" echo "gh auth login" @@ -9,7 +9,7 @@ echo "" echo "# Compile bun dependencies (zig is already compiled)" echo "make devcontainer" echo "" -echo "# Build Bun for development" +echo "# Build bun for development" echo "make dev" echo "" echo "# Run bun" |