~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/rocketfuel-setup

  • Committer: Bryce Harrington
  • Date: 2011-06-30 20:01:25 UTC
  • mto: This revision was merged to the branch mainline in revision 13353.
  • Revision ID: bryce@canonical.com-20110630200125-rpkxch89ti91kamy
Fix typo in message referring to /etc/apt/sources.list

Show diffs side-by-side

added added

removed removed

Lines of Context:
95
95
# Enable relevant Ubuntu package repositories
96
96
grep -q "^deb http:.* ${DISTRIB_CODENAME} .*universe" /etc/apt/sources.list
97
97
if [ $? -ne 0 ]; then
98
 
    echo "Please enable the 'universe' component in /etc/apt/source.list'"
 
98
    echo "Please enable the 'universe' component in /etc/apt/sources.list'"
99
99
    exit 1
100
100
fi
101
101
grep -q "^deb http:.* ${DISTRIB_CODENAME} .*multiverse" /etc/apt/sources.list
102
102
if [ $? -ne 0 ]; then
103
 
    echo "Please enable the 'multiverse' component in /etc/apt/source.list'"
 
103
    echo "Please enable the 'multiverse' component in /etc/apt/sources.list'"
104
104
    exit 1
105
105
fi
106
106