1
0
mirror of https://github.com/go-task/task.git synced 2025-08-10 22:42:19 +02:00

Fix execext.Expand for file names with spaces

Fixes #176
This commit is contained in:
Andrey Nering
2019-02-21 20:52:27 -03:00
parent 21e66c7c02
commit f8a6c5d06c
3 changed files with 19 additions and 5 deletions

View File

@@ -29,3 +29,13 @@ sub/src.txt:
- echo "hello world" > sub/src.txt
status:
- test -f sub/src.txt
'my text file.txt':
desc: generate file with spaces in the name
deps: [sub/src.txt]
cmds:
- cat sub/src.txt > 'my text file.txt'
sources:
- sub/src.txt
generates:
- 'my text file.txt'