Browse Source

fix setup error due to outdated installation of gem

closes #2659 although we do not really support Ubuntu for the host
environment.
Ashish Kulkarni 9 years ago
parent
commit
e8b5abb242
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/build.py

+ 1 - 1
scripts/build.py

@@ -722,7 +722,7 @@ def build_setup_schroot(config, basedir):
     install_packages('git', 'debootstrap', 'schroot', 'rinse', 'debian-archive-keyring',
                      'build-essential', 'ruby', 'ruby-dev', 'libffi-dev', 'tar', 'xz-utils')
     if not get_output('which', 'fpm'):
-        shell('gem install -V fpm -N')
+        shell('gem install fpm --no-ri --no-rdoc')
 
     login  = os.environ.get('SUDO_USER') or get_output('logname')
     target = config.split('-', 2)[2]