Skip to content

Commit f2e5525

Browse files
authored
Merge pull request #350 from jsoref/spelling
Spelling corrections
2 parents be3397c + 7a79809 commit f2e5525

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

debian/changelog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ github-backup-utils (2.5.1) UNRELEASED; urgency=medium
145145

146146
github-backup-utils (2.5.0) UNRELEASED; urgency=medium
147147

148-
* Adds GitHub Enterpise 2.5 support
148+
* Adds GitHub Enterprise 2.5 support
149149
* Adds GitHub Enterprise Clustering support
150150
* Backups and restores SAML keypairs
151151

script/release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ def push_release_branch(version)
207207
end
208208

209209
unless (out = `git commit --quiet -m 'Bump version: #{version} [ci skip]' debian/changelog share/github-backup-utils/version`)
210-
raise "Error commiting changelog and version:\n\n#{out}"
210+
raise "Error committing changelog and version:\n\n#{out}"
211211
end
212212

213213
unless (out = `git push --quiet origin release-#{version}`)

share/github-backup-utils/ghe-restore-alambic-cluster-ng

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ GHE_HOSTNAME="$1"
2222
# us run this script directly.
2323
: ${GHE_RESTORE_SNAPSHOT:=current}
2424

25-
# Find the objets to restore
25+
# Find the objects to restore
2626
storage_paths=$(cd $GHE_DATA_DIR/$GHE_RESTORE_SNAPSHOT/ && find storage -mindepth 4 -maxdepth 4 -type f -exec wc -c {} \;)
2727

2828
# No need to restore anything, early exit

share/github-backup-utils/ghe-restore-repositories-dgit-ng

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ bm_start "$(basename $0) - Building network list"
107107
OLDIFS=$IFS; IFS=$'\n'
108108
for path in $network_paths; do
109109
# Get the network ID
110-
# The nework id from a repository is the last component of the path
110+
# The network id from a repository is the last component of the path
111111
# i.e. /data/repositories/a/nw/a5/bf/c9/37 network ID would be 37
112112
ghe_verbose "Adding network_path $path to the list of networks to send"
113113
echo $path

test/bin/chown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env bash
22
# Fake chown command for tests. Avoids needing to creating special users for
3-
# utlities that chown on the remote side.
3+
# utilities that chown on the remote side.
44
true

test/bin/python

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
# Usage: python -c '...'
33
# Fake python command stub for tests. Python is used on the remote side
4-
# only to parse JSON data retreived from the maintenance status API and produce
4+
# only to parse JSON data retrieved from the maintenance status API and produce
55
# a number of active writing processes. Verify that python code passes syntax
66
# checks and fake a 0 process count.
77
set -e

test/bin/redis-cli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22
# Usage: redis-cli ...
3-
# Fake redis-cli command stub for tests. The redis-cli utlity is run on the
3+
# Fake redis-cli command stub for tests. The redis-cli utility is run on the
44
# remote side by libexec/ghe-backup-redis to force a background save of redis
55
# data and then wait until the dump file has been written. It uses the LASTSAVE
66
# and BGSAVE commands.

test/test-ghe-detect-leaked-ssh-keys.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ EOF
2121

2222
SHARED_UTILS_PATH=$(dirname $(which ghe-detect-leaked-ssh-keys))
2323

24-
begin_test "ghe-detect-leaked-ssh-keys check -h dispays help message"
24+
begin_test "ghe-detect-leaked-ssh-keys check -h displays help message"
2525
(
2626
set -e
2727

@@ -63,7 +63,7 @@ begin_test "ghe-detect-leaked-ssh-keys leaked keys in old snapshot"
6363
echo 98:d8:99:d3:be:c0:55:05:db:b0:53:2f:1f:ad:b3:60 >> "$SHARED_UTILS_PATH/ghe-ssh-leaked-host-keys-list.txt"
6464

6565
output=$(ghe-detect-leaked-ssh-keys -s "$GHE_DATA_DIR/2")
66-
! echo $ouput | grep -q "Leaked key in current backup"
66+
! echo $output | grep -q "Leaked key in current backup"
6767
echo $output | grep -q "One or more older backup snapshots"
6868
)
6969
end_test

0 commit comments

Comments
 (0)