remove welcome message to save terminal space
This commit is contained in:
parent
5ae67d0162
commit
593b9ef119
2 changed files with 2 additions and 6 deletions
3
.github/workflows/rust.yml
vendored
3
.github/workflows/rust.yml
vendored
|
@ -63,6 +63,7 @@ jobs:
|
||||||
env:
|
env:
|
||||||
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc
|
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc
|
||||||
- name: 📦 Prepare binary and checksum
|
- name: 📦 Prepare binary and checksum
|
||||||
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
# Create temp directory for zip contents
|
# Create temp directory for zip contents
|
||||||
mkdir -p temp_release
|
mkdir -p temp_release
|
||||||
|
@ -71,7 +72,7 @@ jobs:
|
||||||
chmod +x temp_release/zenyx${{ matrix.file_extension }}
|
chmod +x temp_release/zenyx${{ matrix.file_extension }}
|
||||||
# Create SHA256 checksum
|
# Create SHA256 checksum
|
||||||
cd temp_release
|
cd temp_release
|
||||||
if [[ "${{ runner.os }}" == "Windows" ]]; then
|
if [ "$RUNNER_OS" == "Windows" ]; then
|
||||||
certutil -hashfile zenyx${{ matrix.file_extension }} SHA256 > zenyx.sha256
|
certutil -hashfile zenyx${{ matrix.file_extension }} SHA256 > zenyx.sha256
|
||||||
# Remove certutil's extra output, keeping only the hash
|
# Remove certutil's extra output, keeping only the hash
|
||||||
sed -i '1d' zenyx.sha256
|
sed -i '1d' zenyx.sha256
|
||||||
|
|
|
@ -1,11 +1,6 @@
|
||||||
use colored::Colorize;
|
use colored::Colorize;
|
||||||
|
|
||||||
pub fn print_splash() {
|
pub fn print_splash() {
|
||||||
println!(
|
|
||||||
"# #
|
|
||||||
# Welcome to the Zenyx terminal #
|
|
||||||
# #"
|
|
||||||
);
|
|
||||||
println!(
|
println!(
|
||||||
"{}",
|
"{}",
|
||||||
format!(
|
format!(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue