We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 877d319 commit 1ebfab6Copy full SHA for 1ebfab6
1 file changed
examples/eg001EmbeddedSigning.sh
@@ -129,14 +129,14 @@ echo ""
129
130
signing_ceremony_url=`cat $response | grep url | sed 's/.*\"url\": \"//' | sed 's/\".*//'`
131
echo ""
132
-printf "The signing ceremony URL is ${signingCeremonyUrl}\n"
+printf "The signing ceremony URL is ${signing_ceremony_url}\n"
133
printf "It is only valid for a couple of minutes. Attempting to automatically open your browser...\n"
134
if which xdg-open &> /dev/null ; then
135
- xdg-open "$signingCeremonyUrl"
+ xdg-open "$signing_ceremony_url"
136
elif which open &> /dev/null ; then
137
- open "$signingCeremonyUrl"
+ open "$signing_ceremony_url"
138
elif which start &> /dev/null ; then
139
- start "$signingCeremonyUrl"
+ start "$signing_ceremony_url"
140
fi
141
142
# cleanup
0 commit comments