Skip to content

Commit 7d98734

Browse files
committed
more shell escapes
1 parent 0f8df64 commit 7d98734

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/integration-per-language.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
docker images
110110
docker push ${{env.imagename}}
111111
echo 'Curling host.minikube.internal test app images from minikube'
112-
minikube ssh "curl http://host.minikube.internal:5001/v2/testapp/tags/list\"
112+
minikube ssh "curl http://host.minikube.internal:5001/v2/testapp/tags/list"
113113
# Deploys application based on manifest files from previous step
114114
- name: Deploy application
115115
uses: Azure/[email protected]
@@ -134,11 +134,11 @@ jobs:
134134
run: |
135135
kubectl get svc
136136
echo 'Starting minikube tunnel'
137-
minikube tunnel > /dev/null 2>&1 & tunnelPID=\$!
137+
minikube tunnel > /dev/null 2>&1 & tunnelPID=$!
138138
sleep 120
139139
kubectl get svc
140140
SERVICEIP=$(kubectl get svc -o jsonpath={'.items[1].status.loadBalancer.ingress[0].ip'})
141-
echo "SERVICEIP: \$SERVICEIP"
141+
echo "SERVICEIP: $SERVICEIP"
142142
echo 'Curling service IP'
143143
curl -m 3 $SERVICEIP:${{env.serviceport}}
144144
kill $tunnelPID

0 commit comments

Comments
 (0)