summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Hildebrandt <afh@surryhill.net>2015-02-24 18:34:42 +0100
committerAlexis Hildebrandt <afh@surryhill.net>2015-02-24 18:34:42 +0100
commita526851c8a9be04d1c2c96d68a9548bfed27d248 (patch)
tree0d25ec91a505cc401147783060f17aea09aba6e5
parent2922dae227499c47c02c81ef17f2fa33af056a03 (diff)
parent69e692dbc54ab6e72d1baad6dcecca55ac2d6077 (diff)
downloadfork-ledger-a526851c8a9be04d1c2c96d68a9548bfed27d248.tar.gz
fork-ledger-a526851c8a9be04d1c2c96d68a9548bfed27d248.tar.bz2
fork-ledger-a526851c8a9be04d1c2c96d68a9548bfed27d248.zip
Merge pull request #400 from jaccarmac/fix-indent
Fix indentation and position of Fedora test. [ci skip]
-rwxr-xr-xacprep8
1 files changed, 4 insertions, 4 deletions
diff --git a/acprep b/acprep
index 1165c2b9..275f2c84 100755
--- a/acprep
+++ b/acprep
@@ -644,10 +644,6 @@ class PrepareBuild(CommandLineApp):
]
self.log.info('Executing: ' + ' '.join(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'):
self.log.info('Looks like you are using YUM on Fedora 20')
packages = [
@@ -673,6 +669,10 @@ class PrepareBuild(CommandLineApp):
self.log.info('Executing: ' + ' '.join(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 #
#########################################################################