File tree Expand file tree Collapse file tree 3 files changed +22
-4
lines changed
Expand file tree Collapse file tree 3 files changed +22
-4
lines changed Original file line number Diff line number Diff line change 11# https://github.com/go-task/task
22version : " 3"
33
4+ includes :
5+ OS :
6+ taskfile : ./Taskfile_{{OS}}.yml
7+ internal : true
8+
49tasks :
510 default :
611 desc : Default (run)
1924 desc : Run app
2025 deps : [build]
2126 cmds :
22- - cmd : ./try-golang -onetime
27+ - cmd : ./try-golang{{exeExt}} -onetime
2328 ignore_error : true
2429 test :
2530 desc : Test
4651 clean :
4752 desc : Clean
4853 cmds :
49- - go clean
50- - rm -f ./try-golang
51- - rm -rf ./.task
54+ - task : OS:clean
5255 tags :
5356 desc : Make tags (Require universal-ctags)
5457 cmds :
Original file line number Diff line number Diff line change 1+ # https://github.com/go-task/task
2+ version : " 3"
3+
4+ tasks :
5+ clean :
6+ - go clean
7+ - rm -f ./try-golang{{exeExt}}
8+ - rm -rf ./.task
Original file line number Diff line number Diff line change 1+ version : ' 3'
2+
3+ tasks :
4+ clean :
5+ - go clean
6+ - cmd /c "del /F /Q ./try-golang{{exeExt}}"
7+ - cmd /c "rd /s /q .task"
You can’t perform that action at this time.
0 commit comments