Skip to content

Commit

Permalink
Merge pull request #3 from yusufcanb/release/1.0-rc2
Browse files Browse the repository at this point in the history
Release 1.0-rc2
  • Loading branch information
yusufcanb authored Feb 25, 2024
2 parents c80707f + 51eb6fa commit 2230ca4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Installation can be done in two ways;
Installation script is the recommended way to install tlm.
It will recognize the which platform and architecture to download and will execute install command for you.

#### Linux and MacOS;
#### Linux and macOS;


Download and execute the installation script by using the following command;
Expand Down Expand Up @@ -60,10 +60,9 @@ Check installation by using the following command;
tlm help
```


## Uninstall

On Linux and MacOS;
On Linux and macOS;

```bash
rm /usr/local/bin/tlm
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0-rc1
1.0-rc2
2 changes: 1 addition & 1 deletion install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if ($env:PROCESSOR_ARCHITECTURE -eq 'AMD64') {
}

# Download URL Construction
$version = Get-Content -Path 'VERSION'
$version = "1.0-rc2"
$base_url = "https://github.com/yusufcanb/tlm/releases/download"
$download_url = "${base_url}/${version}/tlm_${version}_${os}_${arch}.exe"

Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ else
fi

# Download URL Construction
version=$(cat VERSION)
version="1.0-rc2"
base_url="https://github.com/yusufcanb/tlm/releases/download"
download_url="${base_url}/${version}/tlm_${version}_${os}_${arch}"

Expand Down

0 comments on commit 2230ca4

Please sign in to comment.