From 2f610554f78ec5bb3f6a658ac1482d9abca4572a Mon Sep 17 00:00:00 2001 From: Yu Chen Date: Fri, 20 May 2022 08:55:49 +0800 Subject: [PATCH] add cargo fmt in Makefile, and exec make fmt --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 2e33976..c67d48a 100644 --- a/Makefile +++ b/Makefile @@ -6,3 +6,5 @@ docker: build_docker: docker build -t ${DOCKER_NAME} . +fmt: + cd os ; cargo fmt; cd ../user; cargo fmt; cd .. \ No newline at end of file