swc-installation-test-2.py: Don't require a specific Bash version
authorW. Trevor King <wking@tremily.us>
Tue, 1 Jan 2013 01:28:25 +0000 (20:28 -0500)
committerW. Trevor King <wking@tremily.us>
Tue, 1 Jan 2013 14:49:47 +0000 (09:49 -0500)
I have access to a machine running OS X 10.6.8, which has:

  $ bash --version
  GNU bash, version 3.2.48(1)-release (x86_64-apple-darwin10.0)
  Copyright (C) 2007 Free Software Foundation, Inc.

That means no associative arrays, but for SWC purposes, it should
still get the job done.  All we really need is POSIX.2.

swc-installation-test-2.py

index f1101eda47aa0a604d6b9f7fce7471090ed9de9d..c28c02b0852091649324956755bb05855667fa99 100755 (executable)
@@ -294,7 +294,7 @@ class CommandDependency (Dependency):
 
 
 for command,long_name,minimum_version in [
-        ('bash', 'Bourne Again Shell', (4, 0)),
+        ('bash', 'Bourne Again Shell', None),
         ('easy_install', 'Setuptools easy_install', None),
         ('git', 'Git', (1, 8, 0)),
         ('hg', 'Mercurial', (2, 0, 0)),