Skip to content

Commit ccf9b5a

Browse files
fix(download.sh): Correct Typos, fixed syntax errors. (#23)
1 parent 7b6717b commit ccf9b5a

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

download.sh

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,19 @@ echo "handles-server is downloaded and ready to run."
2424

2525
echo "Start demo of handles server using the in memory provider? (Y/n)"
2626
read response
27+
28+
function ended_demo() {
29+
printf "\n\n"
30+
echo "> hopefully the demo was helpful!"
31+
printf "\n"
32+
}
33+
2734
case "$response" in
2835
[yY][eE][sS] | [yY] | "")
29-
function ended_demo() {
30-
printf "\n\n"
31-
echo "> hopefully the demo was helpful!"
32-
printf "\n"
33-
}
34-
3536
echo "> Starting server for domain example.com with handles alice.example.com and bob.example.com"
36-
sleep 0.5 # An articial delay for time to read the message
37+
sleep 0.5 # An artificial delay for time to read the message
3738
echo "> Test it out with: curl --header 'Host: alice.example.com' http://localhost:8888/.well-known/atproto-did"
38-
sleep 1 # An articial delay for time to read the message
39+
sleep 1 # An artificial delay for time to read the message
3940
echo "> exit with ctrl+c once you're done."
4041
sleep 0.5
4142
printf "\n\n"

0 commit comments

Comments
 (0)