Skip to content

Commit cc32008

Browse files
authored
Merge pull request #726 from github/solvaholic/soften-warning
Remove "contact support" from warning about route verification
1 parent a772613 commit cc32008

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

share/github-backup-utils/ghe-backup-repositories

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ if [ -z "$GHE_SKIP_ROUTE_VERIFICATION" ]; then
384384
done |sort|uniq > $tempdir/source_routes
385385
(cd $backup_dir/ && find * -mindepth 5 -maxdepth 6 -type d -name \*.git | fix_paths_for_ghe_version | uniq | sort | uniq) > $tempdir/destination_routes
386386

387-
git --no-pager diff --unified=0 --no-prefix -- $tempdir/source_routes $tempdir/destination_routes || echo "Warning: One or more repository networks and/or gists were not found on the source appliance. Please contact GitHub Enterprise Support for assistance."
387+
git --no-pager diff --unified=0 --no-prefix -- $tempdir/source_routes $tempdir/destination_routes || echo "Warning: One or more repository networks and/or gists were not found on the source appliance."
388388
increment-progress-total-count 1
389389
bm_end "$(basename $0) - Verifying Routes"
390390
fi

share/github-backup-utils/ghe-backup-storage

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ if [ -z "$GHE_SKIP_ROUTE_VERIFICATION" ]; then
155155
cat $tempdir/*.rsync | uniq | sort | uniq > $tempdir/source_routes
156156
(cd $backup_dir/ && find * -mindepth 3 -maxdepth 3 -type f -print | uniq | sort | uniq) > $tempdir/destination_routes
157157

158-
git --no-pager diff --unified=0 --no-prefix -- $tempdir/source_routes $tempdir/destination_routes || echo "Warning: One or more storage objects were not found on the source appliance. Please contact GitHub Enterprise Support for assistance."
158+
git --no-pager diff --unified=0 --no-prefix -- $tempdir/source_routes $tempdir/destination_routes || echo "Warning: One or more storage objects were not found on the source appliance."
159159

160160
increment-progress-total-count 1
161161
bm_end "$(basename $0) - Verifying Routes"

0 commit comments

Comments
 (0)