- Task version: Task version: v3.13.0 (h1:H1LzM7Ac2Ixz26086sgN7xxueXHcjVwy7qt9BrboiTs=)
- Operating System: Ubuntu 22.04
I believe this is the result of this issue I filed with sh: mvdan/sh#884
Example Taskfile showing the issue
version: '3'
tasks:
default:
cmds:
- |
declare -A database_lookup
database_lookup["management"]=management
database_lookup["devicetwin"]=devicetwin
database_lookup["identity"]=identity
for d in "${!database_lookup[@]}"
do
echo $d
done
I believe this is the result of this issue I filed with
sh: mvdan/sh#884Example Taskfile showing the issue