diff --git a/README-bashism.md b/README-bashism.md deleted file mode 100644 index 804bf0e..0000000 --- a/README-bashism.md +++ /dev/null @@ -1,13 +0,0 @@ -Running `./sbt.sh` emits `./sbt.sh: 2: ./sbt.sh: source: not found` -==== - -This is due to the usage of `source` within the scripts. - -There are two potential fixes: - -* Change `#!/bin/sh` to `#!/bin/bash` -* Change `source` to `.` - -I'm doing the ladder one... - -* `find . -name "*.sh*|xargs -n1 sed -i "s/source /. /"`