Skip to content

Commit

Permalink
#Fixes 220 Updated unzip
Browse files Browse the repository at this point in the history
#Fixes 220 Updated unzip
  • Loading branch information
torwen1 committed Aug 27, 2021
1 parent e217ca5 commit baf9454
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/3_helpernode/helpernode.tf
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ resource "null_resource" "prep_helpernode_tools_curl" {
"curl -o ocp4-extract-helper/ocp4-helpernode.zip ${var.helpernode_repo}",
"echo 'Extracting ocp4-helpernode...'",
"cd ocp4-extract-helper && unzip ocp4-helpernode.zip",
"rm -rf ocp4-extract-helper/ocp4-helpernode.zip",
"cd .. && rm -rf ocp4-extract-helper/ocp4-helpernode.zip",
"mv ocp4-extract-helper/ocp4-helpernode* ocp4-helpernode",
"rm -rf ocp4-extract-helper"
]
Expand Down
2 changes: 1 addition & 1 deletion modules/5_install/install.tf
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ resource "null_resource" "prep_playbooks_tools_curl" {
"curl -o ocp4-extract-helper/ocp4-playbooks.zip ${var.install_playbook_repo}",
"echo 'Extracting ocp4-playbooks...'",
"cd ocp4-extract-helper && unzip ocp4-playbooks.zip",
"rm -rf ocp4-extract-helper/ocp4-playbooks.zip"
"cd .. && rm -rf ocp4-extract-helper/ocp4-playbooks.zip",
"mv ocp4-extract-helper/ocp4-playbooks* ocp4-playbooks",
"rm -rf ocp4-extract-helper"
]
Expand Down

0 comments on commit baf9454

Please sign in to comment.