diff options
author | Alexis Hildebrandt <afh@surryhill.net> | 2015-02-24 18:34:42 +0100 |
---|---|---|
committer | Alexis Hildebrandt <afh@surryhill.net> | 2015-02-24 18:34:42 +0100 |
commit | a526851c8a9be04d1c2c96d68a9548bfed27d248 (patch) | |
tree | 0d25ec91a505cc401147783060f17aea09aba6e5 | |
parent | 2922dae227499c47c02c81ef17f2fa33af056a03 (diff) | |
parent | 69e692dbc54ab6e72d1baad6dcecca55ac2d6077 (diff) | |
download | fork-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-x | acprep | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 # ######################################################################### |