aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-08-01 18:00:22 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-08-01 18:00:22 -0400
commita3ded6043a926735142f3bb48093e83135044c06 (patch)
treee714978df2c969ac9b7d475b11cbab19d9bfd33a
parentb27a734a56f07c2e15518364c4cc3cef0b13a1e2 (diff)
remove powershell commands
-rw-r--r--Module.Taskfile.yaml12
1 files changed, 6 insertions, 6 deletions
diff --git a/Module.Taskfile.yaml b/Module.Taskfile.yaml
index 88565f9..d729ea3 100644
--- a/Module.Taskfile.yaml
+++ b/Module.Taskfile.yaml
@@ -39,8 +39,8 @@ tasks:
postbuild_success:
cmds:
#push packages to the sleet feed (feed path is vnbuild global)
- - powershell -Command 'sleet push "{{.PACK_OUT}}/debug/" --source debug --config "{{.SLEET_CONFIG_PATH}}" --force'
- - powershell -Command 'sleet push "{{.PACK_OUT}}/release/" --source release --config "{{.SLEET_CONFIG_PATH}}" --force'
+ - sleet push "{{.PACK_OUT}}/debug/" --source debug --config "{{.SLEET_CONFIG_PATH}}" --force
+ - sleet push "{{.PACK_OUT}}/release/" --source release --config "{{.SLEET_CONFIG_PATH}}" --force
postbuild_failed:
cmds:
@@ -57,12 +57,12 @@ tasks:
build_debug:
internal: true
cmds:
- - powershell -Command 'dotnet publish -c debug {{.MS_ARGS}}'
- - powershell -Command 'dotnet pack -c debug {{.MS_ARGS}} -o "{{.PACK_OUT}}/debug/"'
+ - dotnet publish -c debug {{.MS_ARGS}}
+ - dotnet pack -c debug {{.MS_ARGS}} -o "{{.PACK_OUT}}/debug/"
build_release:
internal: true
cmds:
- - powershell -Command 'dotnet publish -c release {{.MS_ARGS}}'
- - powershell -Command 'dotnet pack -c release {{.MS_ARGS}} -o "{{.PACK_OUT}}/release/"'
+ - dotnet publish -c release {{.MS_ARGS}}
+ - dotnet pack -c release {{.MS_ARGS}} -o "{{.PACK_OUT}}/release/"
\ No newline at end of file