Skip to content

Commit

Permalink
Fix syntax error in *-Tag that made them fail silently.
Browse files Browse the repository at this point in the history
  • Loading branch information
RobFaie committed Mar 12, 2020
1 parent 3232b6e commit bfcad49
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion functions/Add-Tag.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function Add-Tag {
}
}

$body = {
$body = @{
tags = $Tag
}

Expand Down
2 changes: 1 addition & 1 deletion functions/Remove-Tag.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function Remove-Tag {
}
}

$body = {
$body = @{
tags = $Tag
}

Expand Down
2 changes: 1 addition & 1 deletion functions/Set-Tag.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function Set-Tag {
}
}

$body = {
$body = @{
tags = $Tag
}

Expand Down

0 comments on commit bfcad49

Please sign in to comment.