diff options
author | Jacob MacDonald <jaccarmac@gmail.com> | 2015-02-23 15:53:20 -0700 |
---|---|---|
committer | Jacob MacDonald <jaccarmac@gmail.com> | 2015-02-23 16:02:00 -0700 |
commit | 69e692dbc54ab6e72d1baad6dcecca55ac2d6077 (patch) | |
tree | 3506aca7469d40212201b760212e808aad3970b2 /acprep | |
parent | 0b7996ed7cdb5a5d64a58da3ed7f615ba591416f (diff) | |
download | fork-ledger-69e692dbc54ab6e72d1baad6dcecca55ac2d6077.tar.gz fork-ledger-69e692dbc54ab6e72d1baad6dcecca55ac2d6077.tar.bz2 fork-ledger-69e692dbc54ab6e72d1baad6dcecca55ac2d6077.zip |
Fix indentation and position of Fedora test.
The blame for this section was a bit of a cluster, but, as someone who's not
using Fedora, this makes the most logical sense. (Fedora is a version of RH,
right?)
Diffstat (limited to 'acprep')
-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 # ######################################################################### |