diff options
author | 2022-07-09 21:13:30 +0400 | |
---|---|---|
committer | 2022-07-09 18:27:56 -0700 | |
commit | 85dbb9cc9280d633c6eb815bf9115cb1a57bb510 (patch) | |
tree | ef5e15f0ae4f6c671fa25aa757043b6b20877fa1 | |
parent | e11f1476afe8328349790e6aa249d29a50fddfaf (diff) | |
download | bun-85dbb9cc9280d633c6eb815bf9115cb1a57bb510.tar.gz bun-85dbb9cc9280d633c6eb815bf9115cb1a57bb510.tar.zst bun-85dbb9cc9280d633c6eb815bf9115cb1a57bb510.zip |
using {process.version} instead of hardcoding
-rw-r--r-- | packages/bun-landing/page.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/bun-landing/page.tsx b/packages/bun-landing/page.tsx index f73ba8d70..da91cf90d 100644 --- a/packages/bun-landing/page.tsx +++ b/packages/bun-landing/page.tsx @@ -180,7 +180,7 @@ const InstallBox = ({ desktop = false }) => ( > <div className="InstallBox-label"> <div className="InstallBox-label-heading"> - Install Bun CLI v0.1.2 (beta) + Install Bun CLI v{process.version} (beta) </div> <div className="InstallBox-label-subtitle"> macOS x64 & Silicon, Linux x64, Windows Subsystem for Linux |