swc-windows-installer.sh: Use '~' in ~/nano.rc includes
authorW. Trevor King <wking@tremily.us>
Wed, 12 Mar 2014 23:56:19 +0000 (16:56 -0700)
committerW. Trevor King <wking@tremily.us>
Thu, 13 Mar 2014 00:10:25 +0000 (17:10 -0700)
commit7bd5609417b5d0d90ec091759638dd69c2336a81
tree15617bb7bcd0f8c7c339b0a5857f44a9acd6c8dd
parent47056b83143efb8ad816a8fb8b9ee095ba058bc0
swc-windows-installer.sh: Use '~' in ~/nano.rc includes

On Wed, Mar 12, 2014 at 04:44:31PM -0700, Ethan White wrote [1]:
> Got it. We just need to change the `/c/Users/River/` in the include
> statements to `~/` and everything works great!

I also replaced an:

  if [ ... ]

condition with:

  if test ...

to match the rest of the script.

The underscore prefixes in the string-equality test are to avoid miss
interpretation in the pathological case that RCPATH starts with '!' or
some such.  It's hard to imagine how this could happen with the
current script, but... safety first ;).

[1]: https://github.com/swcarpentry/bc/pull/357#issuecomment-37483149
swc-windows-installer.sh