Skip to content

Commit 1ebfab6

Browse files
committed
Update examples/eg001EmbeddedSigning.sh
1 parent 877d319 commit 1ebfab6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/eg001EmbeddedSigning.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,14 +129,14 @@ echo ""
129129

130130
signing_ceremony_url=`cat $response | grep url | sed 's/.*\"url\": \"//' | sed 's/\".*//'`
131131
echo ""
132-
printf "The signing ceremony URL is ${signingCeremonyUrl}\n"
132+
printf "The signing ceremony URL is ${signing_ceremony_url}\n"
133133
printf "It is only valid for a couple of minutes. Attempting to automatically open your browser...\n"
134134
if which xdg-open &> /dev/null ; then
135-
xdg-open "$signingCeremonyUrl"
135+
xdg-open "$signing_ceremony_url"
136136
elif which open &> /dev/null ; then
137-
open "$signingCeremonyUrl"
137+
open "$signing_ceremony_url"
138138
elif which start &> /dev/null ; then
139-
start "$signingCeremonyUrl"
139+
start "$signing_ceremony_url"
140140
fi
141141

142142
# cleanup

0 commit comments

Comments
 (0)