From 1ad51993d02cb52403757bac69039d881b9e47e7 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Sat, 18 Nov 2023 23:15:03 +0200 Subject: [PATCH] chore(build): Add emoji to command output --- bin/chainboot/Makefile.toml | 2 +- nucleus/Makefile.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/chainboot/Makefile.toml b/bin/chainboot/Makefile.toml index 8f8bc50..1274ef0 100644 --- a/bin/chainboot/Makefile.toml +++ b/bin/chainboot/Makefile.toml @@ -43,7 +43,7 @@ script = [ ''' kernelImage = set "chain_boot_rpi4.img" cp ${CHAINBOOT_BIN} ${VOLUME}/${kernelImage} - echo "Copied chainboot to ${VOLUME}/${kernelImage}" + echo 🔄 Copied chainboot to ${VOLUME}/${kernelImage} ''' ] diff --git a/nucleus/Makefile.toml b/nucleus/Makefile.toml index 49114d6..59fdf89 100644 --- a/nucleus/Makefile.toml +++ b/nucleus/Makefile.toml @@ -51,7 +51,7 @@ script = [ ''' kernelImage = set "kernel8.img" cp ${KERNEL_BIN} ${VOLUME}/${kernelImage} - echo "Copied nucleus to ${VOLUME}/${kernelImage}" # TODO add emoji + echo 🔄 Copied nucleus to ${VOLUME}/${kernelImage} ''' ]