From 61fe193062f9b97b43ba70facdb17561e986a845 Mon Sep 17 00:00:00 2001 From: Alejandro Cabeza Romero Date: Mon, 16 Feb 2026 16:14:54 +0100 Subject: [PATCH] Add prettify command and fix build command. --- justfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index 2625aea..11f200b 100644 --- a/justfile +++ b/justfile @@ -7,7 +7,7 @@ configure: ${LOGOS_BLOCKCHAIN_INCLUDE:+-DLOGOS_BLOCKCHAIN_INCLUDE="$LOGOS_BLOCKCHAIN_INCLUDE"} build: configure - cmake --build build --parallel --target liblogos-blockchain-module + cmake --build build --parallel --target logos-blockchain-module clean: rm -rf build target @@ -17,5 +17,8 @@ rebuild: clean configure build nix: nix develop +prettify: + nix shell nixpkgs#clang-tools -c clang-format -i src/**.cpp src/**.h + unicode-logs file: perl -pe 's/\\u([0-9A-Fa-f]{4})/chr(hex($1))/ge' {{file}} | less -R