Andrey Nering
4afc0e8ed0
Fixed some bugs and regressions regarding dynamic variables and directories
...
Closes #426
2021-01-09 13:51:06 -03:00
Andrey Nering
141b377b4e
Partly revert 59d2733b88
...
Keep the old behavior on v2
2021-01-09 10:55:18 -03:00
Andrey Nering
402a478785
Update CHANGELOG
2021-01-09 10:46:53 -03:00
Andrey Nering
73680584f3
Upgrade github.com/go-task/slim-sprig
2021-01-07 13:56:07 -03:00
Andrey Nering
45dbbcd179
v3.2.0
2021-01-07 13:08:07 -03:00
Andrey Nering
83d25bfa00
Refactor: Fix import order
...
It should be: stdlib > libs > app
2021-01-07 11:48:33 -03:00
Andrey Nering
299e27af15
Fix build
2021-01-07 11:39:36 -03:00
Andrey Nering
ec4cd5ed48
Fix .task
directory location
...
Closes #247
2021-01-07 11:36:09 -03:00
Andrey Nering
59d2733b88
Make dynamic variables run on the right directory
...
It was always running in the main Taskfile dir, even when the variable was
declared in an included taskfile in another directory or when task had a
custom dir.
Closes #384
2021-01-07 11:26:11 -03:00
Andrey Nering
cbdd088188
Remove manual event trigger
2021-01-05 11:36:30 -03:00
Andrey Nering
2d52485d7b
Watch: Clear vars cache between runs
...
Closes #365
2021-01-05 11:19:34 -03:00
Andrey Nering
d830178ef8
Do more watch fixes
...
This improves the work done on #423
2021-01-05 10:48:04 -03:00
James Wendel
049984b4cc
Update watch.go
2021-01-03 21:26:09 -07:00
James Wendel
d261a986ab
Update watch.go
...
Watch: Stop removing and addings files all the time.
2021-01-03 17:08:16 -07:00
Andrey Nering
9b2e25735b
v3.1.0
2021-01-03 19:37:09 -03:00
Andrey Nering
e09e75b0ba
Fix a bug when the checksum up-to-date resolution is used by a task with a custom label:
attribute
...
Closes #412
Co-authored-by: Adam Wasila <adam.wasila@gmail.com>
2021-01-03 19:22:38 -03:00
Andrey Nering
6630113fef
Release ARMv6 and ARM64 binaries on Linux
...
Closes #375
Closes #418
2021-01-03 19:12:38 -03:00
Andrey Nering
b2f08c9c20
Merge pull request #415 from felladrin/patch-1
...
Fix duplicate task name on "Short task syntax" example
2021-01-02 11:02:49 -03:00
Andrey Nering
6a4315b7e7
Merge pull request #407 from bryceschober/patch-1
...
Use {{default}} for an overriding usage
2021-01-01 19:21:50 -03:00
Andrey Nering
8b3e62ff6d
Add forgotten CHANGELOG entry for #358
...
Ref #121
2021-01-01 19:06:00 -03:00
Andrey Nering
f1d3f6740d
Update CHANGELOG.md
2021-01-01 18:57:28 -03:00
Andrey Nering
9ccd1d920c
.gitignore: Add /tmp
2021-01-01 18:30:14 -03:00
Andrey Nering
9674d75ff6
Evaluate included taskfiles in order of declaration
...
Closes #393
2021-01-01 18:27:50 -03:00
Andrey Nering
22fd74846d
Use interp.Params("-e")
intead of running "set -e" manually
...
This is an improvement for ac8e344173
2021-01-01 17:32:42 -03:00
Andrey Nering
777645888a
New logo and color
2020-12-27 19:07:38 -03:00
Andrey Nering
ac8e344173
Run "set -e" automatically for every command
...
Without this, multiline command strings won't always exit when they fail.
Closes #403
2020-12-27 17:15:12 -03:00
Andrey Nering
16fad60833
execext: Small refactor
2020-12-27 16:51:00 -03:00
Andrey Nering
cb96a39b46
v3.0.1
2020-12-26 15:34:17 -03:00
Andrey Nering
a540634b5b
Add about: to issue templates
2020-12-26 15:27:15 -03:00
Andrey Nering
e15576bc47
Update issue templates
2020-12-26 15:24:46 -03:00
Andrey Nering
95359760ae
Documentation: go get is actually supported
...
Closes #395
2020-12-26 15:06:39 -03:00
Andrey Nering
be209cb7b6
Merge pull request #406 from ezhukov/patch-2
...
Update curl arguments in installation.md
2020-12-26 15:00:04 -03:00
Victor Nogueira
f5eb80759b
Fix duplicate task name on "Short task syntax" example
...
To make it a valid YAML file and avoid the error:
```
yaml: unmarshal errors:
line 6: mapping key "build" already defined at line 4
```
2020-12-07 13:00:25 +02:00
Andrey Nering
9f125502f8
Update Taskfile.yml
...
We now use modules. Dep is history
2020-12-05 19:10:49 -03:00
Andrey Nering
3f856c4b1c
Merge pull request #414 from go-task/mvdan/sh-3.2.1
...
Upgrade mvdan/sh to v3.2.1
2020-12-05 19:04:48 -03:00
Andrey Nering
f55fb1e3a5
Upgrade mvdan/sh to v3.2.1
2020-12-05 18:59:34 -03:00
Bryce Schober
bf88bd5da5
Use {{default}} for an overriding usage
...
Fixes documentation confusion raised in #376 .
2020-11-18 17:09:44 -08:00
Eugene Zhukov
b7112e02db
Update curl arguments in installation.md
...
Double -s argument does not make sense according to curl manual page.
-s stands for silent, while -S (capital S) stands for showing the error.
When used in combination, curl shows an error message if it fails, but disables progress meter.
Finally, in the end of sh command there is -d, which stands for debug and contradicts -sS curl arguments.
I suggest to remove curl silencers all together, because more debug is better in CIs. I also suggest to use --location instead of -L for clarity.
2020-11-17 10:02:06 +02:00
Kevin Ard
347c796662
add tests to previous
2020-11-13 16:24:34 -05:00
Kevin Ard
9bed7f7a9b
feat (help): allow cli option to list tasks with no desc
...
added an add'l cli option that lists all tasks, with or without description.
orig. behavior: task -l lists tasks with desc field
new behaviour: task -la or task -a will list all tasks. if task has desc, it will be included.
BREAKING CHANGES: none, that I know of.
NOTES/Concerns:
- This is wip.
- Haven't checked how it interacts with bash completion.
- The new Executor.TaskNames func does not use e.CompiledTask(taskfile.Call{Task: task.Task})
2020-11-13 15:27:03 -05:00
Andrey Nering
b136166fc9
Merge pull request #387 from sheldonhull/patch-1
...
feat: improve installation script documentation for shell installs
2020-11-08 11:46:58 -03:00
sheldonhull
75727c3d68
fix: improve curl command install
...
- works on macOS
- works in Linux (tested in docker container)
2020-10-16 18:12:26 -05:00
sheldonhull
6c625b3359
fix: typo on curl install comment
...
fix from url to curl
2020-10-14 22:30:19 -05:00
Andrey Nering
60759a4e3b
Post-fixes and CHANGELOG for #385
2020-10-12 21:16:09 -03:00
Andrey Nering
582a66bb2f
Merge pull request #385 from chris-garrett/dev/378-missing-env
...
Resolves #378 - allow for missing env files as they may be bootstrapped.
2020-10-12 21:12:08 -03:00
Andrey Nering
d78f78bb5c
Fix panic for empty tasks
...
Closes #338
Closes #362
Co-authored-by: Bharath Kumar <shettybharath4@gmail.com>
2020-10-12 21:03:13 -03:00
sheldonhull
71b7d062d5
feat: improve installation script documentation for shell installs
...
- The default didn't work well for me out of the gate.
- This is the modified version to support passing in the arguments easily as well as an example for installing to `/usr/local/bin` for using in Codespaces or equivalent development workflow.
2020-10-07 14:57:25 -05:00
Chris Garrett
c6138a0660
#378 - allow for missing env files as they may be bootstrapped.
2020-10-03 16:39:58 -06:00
Andrey Nering
ce4ac97269
Documentation updates
2020-09-06 14:33:28 -03:00
Andrey Nering
2088a86512
Merge pull request #372 from go-task/go-1-15
...
CI: Update Go version to 1.15.x
2020-09-05 17:59:55 -03:00