Skip to content

Commit 7662b71

Browse files
committed
Use FreeBSD built-ins more for FreeBSD docs
1 parent 064185e commit 7662b71

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,16 +168,16 @@ VERSION=v0.2.0
168168
RELEASE_URL=https://github.com/IvanIsCoding/celq/releases/download/${VERSION}
169169
170170
# Download and verify checksum
171-
curl -LO ${RELEASE_URL}/SHA256SUMS
172-
curl -LO ${RELEASE_URL}/celq-x86_64-unknown-freebsd.tar.gz
171+
fetch ${RELEASE_URL}/SHA256SUMS
172+
fetch ${RELEASE_URL}/celq-x86_64-unknown-freebsd.tar.gz
173173
sha256 -c SHA256SUMS --ignore-missing
174174
175175
# Extract and install
176176
tar xzf celq-x86_64-unknown-freebsd.tar.gz
177-
sudo mv celq /usr/local/bin/
177+
sudo install -m 755 celq /usr/local/bin/
178178
```
179179

180-
`celq` can be installed from source following the [Cargo](#cargo) section. We aim to compile with the Rust version provided in the ports tree.
180+
`celq` can be installed from source following the [Cargo](#cargo) section. We strive to always compile with the Rust version provided in the ports tree.
181181

182182
## Limitations
183183

docs/installation_guide.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -180,16 +180,16 @@ VERSION=v0.2.0
180180
RELEASE_URL=https://github.com/IvanIsCoding/celq/releases/download/${VERSION}
181181
182182
# Download and verify checksum
183-
curl -LO ${RELEASE_URL}/SHA256SUMS
184-
curl -LO ${RELEASE_URL}/celq-x86_64-unknown-freebsd.tar.gz
183+
fetch ${RELEASE_URL}/SHA256SUMS
184+
fetch ${RELEASE_URL}/celq-x86_64-unknown-freebsd.tar.gz
185185
sha256 -c SHA256SUMS --ignore-missing
186186
187187
# Extract and install
188188
tar xzf celq-x86_64-unknown-freebsd.tar.gz
189-
sudo mv celq /usr/local/bin/
189+
sudo install -m 755 celq /usr/local/bin/
190190
```
191191

192-
`celq` can be installed from source following the [Cargo](#cargo) section. We aim to compile with the Rust version provided in the ports tree.
192+
`celq` can be installed from source following the [Cargo](#cargo) section. We strive to always compile with the Rust version provided in the ports tree.
193193

194194
## Integrity and Authenticity
195195

0 commit comments

Comments
 (0)