~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/rocketfuel-setup

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-07-01 15:02:27 UTC
  • mfrom: (13341.1.1 lp800877-source-list)
  • Revision ID: launchpad@pqm.canonical.com-20110701150227-dg0sr5d3gp6gkoaa
[r=sinzui][bug=800877] 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