aboutsummaryrefslogtreecommitdiff
path: root/ci/install.taskfile.yaml
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-05-14 21:52:03 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-05-14 21:52:03 -0400
commit1b7270b40b65ef089bf40a14065227f742b8507e (patch)
treeafc119861fcbdd097fcb138f4e682fa8df545cb0 /ci/install.taskfile.yaml
parent2deda50a167286bc93fd3871a1fd6dbf9f43c81f (diff)
chore: make container slightly easier to setup
Diffstat (limited to 'ci/install.taskfile.yaml')
-rw-r--r--ci/install.taskfile.yaml5
1 files changed, 4 insertions, 1 deletions
diff --git a/ci/install.taskfile.yaml b/ci/install.taskfile.yaml
index 898958b..587ac86 100644
--- a/ci/install.taskfile.yaml
+++ b/ci/install.taskfile.yaml
@@ -16,4 +16,7 @@ tasks:
- cd {{.DIR}} && powershell "{{ .PROJECT_DIR }}/install.ps1" -BaseUrl {{.BUILDS_URL}} -ModuleName {{.MODULE_NAME}} -ProjectName {{.PROJECT_NAME}} -FileName {{.FILE_NAME}} -Version {{.VERSION}}
- cd {{.DIR}} && tar -xzf {{.FILE_NAME}}
#remove the archive file
- - cd {{.DIR}} && powershell -Command "rm {{.FILE_NAME}}" \ No newline at end of file
+ - cd {{.DIR}} && powershell -Command "rm {{.FILE_NAME}}"
+ #remove all pckage.json files that could cause build issues
+ - cmd: cd {{.DIR}} && powershell 'Get-ChildItem -Path . -Recurse -File -Filter "package.json" | Remove-Item -Force'
+ ignore_error: true \ No newline at end of file