test existence, not symlink
authorErich Smith <heartquest@gmail.com>
Wed, 16 May 2012 17:00:22 +0000 (13:00 -0400)
committerErich Smith <heartquest@gmail.com>
Wed, 16 May 2012 17:00:22 +0000 (13:00 -0400)
commit758c4f33284515ef4c7f7b315f165a51d2a8a18f
treecbd173b84aa4db9ed572a72155e399f2cdbedb7c
parenta825c5f16fd9fe8268a32e4bf00de4c74b4a0213
test existence, not symlink

it isn't safe to assume that symlinks created in the enabled/* dirs will
be symlinks later...

some users use tools like Dropbox to sync their files across systems,
and these may transform symlinks into regular files.  explicitly
checking for symlinks with tests like [ -h $file ] will break on these
systems.  these tests have been replaced with [ -e $file ] instead.
lib/helpers.bash
plugins/available/z.plugin.bash