Skip to content

Commit

Permalink
fix: script path (#480)
Browse files Browse the repository at this point in the history
  • Loading branch information
huayuenh authored Sep 20, 2024
1 parent 14f7a57 commit 265e6a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions ibm_catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -1524,9 +1524,9 @@
{
"key": "scc_enable_scc",
"type": "string",
"default_value": "false",
"default_value": "true",
"description": "Adds the SCC tool integration to the toolchain.",
"required": true
"required": false
},
{
"key": "scc_instance_crn",
Expand Down Expand Up @@ -3299,9 +3299,9 @@
{
"key": "scc_enable_scc",
"type": "string",
"default_value": "false",
"default_value": "true",
"description": "Adds the SCC tool integration to the toolchain.",
"required": true
"required": false
},
{
"key": "scc_instance_crn",
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -919,7 +919,7 @@ resource "null_resource" "ci_pipeline_run" {
}

provisioner "local-exec" {
command = "${path.root}/scripts/ci_start.sh \"${ibm_cd_tekton_pipeline_trigger.ci_pipeline_webhook[0].webhook_url}\" \"${random_string.webhook_secret.result}\""
command = "${path.root}/../../scripts/ci_start.sh \"${ibm_cd_tekton_pipeline_trigger.ci_pipeline_webhook[0].webhook_url}\" \"${random_string.webhook_secret.result}\""
interpreter = ["/bin/bash", "-c"]
quiet = true
}
Expand Down

0 comments on commit 265e6a9

Please sign in to comment.