diff --git a/Taskfile.yml b/Taskfile.yml index 26ed5b0..650374d 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -1,6 +1,6 @@ version: '3' -dotenv: [ '.env' ] +dotenv: ['.env'] vars: PROGRAM: vmrcli @@ -21,15 +21,15 @@ vars: tasks: default: - desc: "Build vmrcli for Windows" + desc: Build vmrcli for Windows deps: [build] build: - desc: "Build vmrcli for Windows" + desc: Build vmrcli for Windows deps: [link] link: - desc: "Link all files in obj/ for Windows" + desc: Link all files in obj/ for Windows deps: [compile] cmds: - | @@ -45,7 +45,7 @@ tasks: - '{{.BIN_DIR}}/{{.PROGRAM}}.exe' compile: - desc: "Compile all files in src/ and include/ for Windows" + desc: Compile all files in src/ and include/ for Windows cmds: - | {{.SHELL}} -Command " @@ -63,9 +63,9 @@ tasks: - '{{.OBJ_DIR}}/**' clean: - desc: "Remove all files in obj/ and bin/" + desc: Remove all files in obj/ and bin/ cmds: - | {{.SHELL}} -Command " if (Test-Path -Path '{{.OBJ_DIR}}') { Remove-Item -Path '{{.OBJ_DIR}}' -Recurse -Force } - if (Test-Path -Path '{{.BIN_DIR}}') { Remove-Item -Path '{{.BIN_DIR}}' -Recurse -Force }" \ No newline at end of file + if (Test-Path -Path '{{.BIN_DIR}}') { Remove-Item -Path '{{.BIN_DIR}}' -Recurse -Force }"