From 9ee0dac61027aee85b8596bf5e295b52322fa553 Mon Sep 17 00:00:00 2001 From: Onyx and Iris Date: Fri, 7 Feb 2025 23:00:07 +0000 Subject: [PATCH] run through formatter --- Taskfile.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index 8d7d2e7..08b0a70 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -7,34 +7,34 @@ tasks: default: desc: Prepare artifacts for release cmds: - - task: release + - task: release release: desc: Build and compress all artifacts cmds: - - task: build - - task: compress + - task: build + - task: compress build: desc: Build the project cmds: - - for: - matrix: - KIND: ["basic", "banana", "potato"] - cmd: pdm run pyinstaller --noconfirm --distpath dist/{{.ITEM.KIND}} spec/{{.ITEM.KIND}}.spec + - for: + matrix: + KIND: [basic, banana, potato] + cmd: pdm run pyinstaller --noconfirm --distpath dist/{{.ITEM.KIND}} spec/{{.ITEM.KIND}}.spec compress: desc: Compress the build artifacts cmds: - - for: - matrix: - KIND: ["basic", "banana", "potato"] - cmd: '{{.SHELL}} -Command "Compress-Archive -Path dist/{{.ITEM.KIND}} -DestinationPath dist/{{.ITEM.KIND}}.zip"' + - for: + matrix: + KIND: [basic, banana, potato] + cmd: '{{.SHELL}} -Command "Compress-Archive -Path dist/{{.ITEM.KIND}} -DestinationPath dist/{{.ITEM.KIND}}.zip"' clean: desc: Clean the project cmds: - - | - {{.SHELL}} -Command " - Remove-Item -Recurse -Force build/basic,build/banana,build/potato - Remove-Item -Recurse -Force dist/*" \ No newline at end of file + - | + {{.SHELL}} -Command " + Remove-Item -Recurse -Force build/basic,build/banana,build/potato + Remove-Item -Recurse -Force dist/*"