Skip to content

Commit 7bc6757

Browse files
committed
changed command
1 parent 88e3708 commit 7bc6757

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/octopus_container_test_framework.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -221,10 +221,10 @@ func (o *OctopusContainerTest) setupOctopus(ctx context.Context, connString stri
221221
Entrypoint: []string{"/bin/sh"},
222222
Cmd: []string{
223223
"-c",
224-
"wget -O - https://apt.releases.hashicorp.com/gpg | gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg;",
225-
"echo \"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main\" | tee /etc/apt/sources.list.d/hashicorp.list;",
226-
"apt update && apt install terraform;",
227-
"./install.sh",
224+
"wget -O - https://apt.releases.hashicorp.com/gpg | gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg && " +
225+
"echo \"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main\" | tee /etc/apt/sources.list.d/hashicorp.list && " +
226+
"apt update && apt install -y terraform && " +
227+
"./install.sh",
228228
},
229229
}
230230

0 commit comments

Comments
 (0)