Merge pull request #400 from jaccarmac/fix-indent

Fix indentation and position of Fedora test.

[ci skip]
This commit is contained in:
Alexis Hildebrandt 2015-02-24 18:34:42 +01:00
commit a526851c8a

8
acprep
View file

@ -644,10 +644,6 @@ class PrepareBuild(CommandLineApp):
] ]
self.log.info('Executing: ' + ' '.join(packages)) self.log.info('Executing: ' + ' '.join(packages))
self.execute(*packages) self.execute(*packages)
elif system.startswith('CYGWIN'):
self.log.info('Looks like you are using Cygwin')
self.log.info('Please install the dependencies manually.')
elif release.startswith('Fedora release 20'): elif release.startswith('Fedora release 20'):
self.log.info('Looks like you are using YUM on Fedora 20') self.log.info('Looks like you are using YUM on Fedora 20')
packages = [ packages = [
@ -673,6 +669,10 @@ class PrepareBuild(CommandLineApp):
self.log.info('Executing: ' + ' '.join(packages)) self.log.info('Executing: ' + ' '.join(packages))
self.execute(*packages) self.execute(*packages)
elif system.startswith('CYGWIN'):
self.log.info('Looks like you are using Cygwin')
self.log.info('Please install the dependencies manually.')
######################################################################### #########################################################################
# Determine the system's basic configuration # # Determine the system's basic configuration #
######################################################################### #########################################################################