From 3b20d48de324e7f2f96738ec30772cec920c3531 Mon Sep 17 00:00:00 2001 From: hiento09 <136591877+hiento09@users.noreply.github.com> Date: Thu, 30 Nov 2023 09:59:20 +0700 Subject: [PATCH] Replace 4 spaces to tab (#788) Co-authored-by: Hien To --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 3a3d58b83..ea2314926 100644 --- a/Makefile +++ b/Makefile @@ -45,15 +45,15 @@ clean: ifeq ($(OS),Windows_NT) powershell -Command "Get-ChildItem -Path . -Include node_modules, .next, dist -Recurse -Directory | Remove-Item -Recurse -Force" rmdir /s /q "%USERPROFILE%\AppData\Roaming\jan" - rmdir /s /q "%USERPROFILE%\AppData\Roaming\jan-electron" - rmdir /s /q "%USERPROFILE%\AppData\Local\jan*" + rmdir /s /q "%USERPROFILE%\AppData\Roaming\jan-electron" + rmdir /s /q "%USERPROFILE%\AppData\Local\jan*" else ifeq ($(shell uname -s),Linux) find . -name "node_modules" -type d -prune -exec rm -rf '{}' + find . -name ".next" -type d -exec rm -rf '{}' + find . -name "dist" -type d -exec rm -rf '{}' + - rm -rf "~/.config/jan" + rm -rf "~/.config/jan" rm -rf "~/.config/jan-electron" - rm -rf "~/.cache/jan*" + rm -rf "~/.cache/jan*" else find . -name "node_modules" -type d -prune -exec rm -rf '{}' + find . -name ".next" -type d -exec rm -rf '{}' +