Skip to content

Commit fc16410

Browse files
committed
Fix some typos etc
1 parent d9d7af5 commit fc16410

5 files changed

Lines changed: 4 additions & 4 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
local_team_servers := $(shell vagrant status | grep -E -o 'team[0-9]+')
1+
local_team_servers = $(shell vagrant status | grep -E -o 'team[0-9]+')
22

33
ci:
44
@bash ./scripts/ci.sh
File renamed without changes.
File renamed without changes.

score-server/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"net"
66
"net/http"
77

8-
fetchserver "github.com/opensourcecorp/workshops/linux/score-server/pkg/fetch-server"
8+
fetchserver "github.com/opensourcecorp/workshops/linux/score-server/internal/fetch-server"
99
"github.com/sirupsen/logrus"
1010
)
1111

scripts/linux-workshop-admin.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ _score-for-challenge() {
3535
log-info "Providing instruction to user for Challenge ${next_challenge}"
3636
cp "${wsroot}/instructions/challenge_${next_challenge}.md" /home/appuser/
3737
# Also broadcast message to user when challenge is complete
38-
wall "Congrats on finishing Challenge ${which_challenge}! Be sure to check your home directory for any new instruction files! (hit any key to dismiss this message)"
38+
wall "Congrats on finishing Challenge ${which_challenge}! Be sure to check your home directory for any new instruction files! (hit Enter to dismiss this message)"
3939
else
4040
log-info 'Team is done with the workshop!'
4141
cp "${wsroot}/instructions/congrats.md" /home/appuser/
4242
# This check suppresses an infinite loop of congratulations, lol
4343
if [[ ! -f "${wsroot}"/team_has_been_congratulated ]] ; then
44-
wall "Congratulations -- you have completed ALL CHALLENGES! Be sure to read congrats.md in your home directory! (hit any key to dismiss this message)"
44+
wall "Congratulations -- you have completed ALL CHALLENGES! Be sure to read congrats.md in your home directory! (hit Enter to dismiss this message)"
4545
touch "${wsroot}"/team_has_been_congratulated
4646
fi
4747
fi

0 commit comments

Comments
 (0)