jive.sh in jive-0.2.1 vs jive.sh in jive-0.2.2

- old
+ new

@@ -41,11 +41,11 @@ __jive_open_pipe() { local tmpfile tmpfile="$(\mktemp -u)" - exec 9>"${tmpfile}" # Open the tempfile for writing on FD 9. + exec 42>"${tmpfile}" # Open the tempfile for writing on FD 42. exec 8<"${tmpfile}" # Open the tempfile for reading on FD 8. \rm -f "${tmpfile}" # Unlink the tempfile. (we've already opened it). } __jive_execute_task() { @@ -74,10 +74,10 @@ __jive_close_pipe } __jive_close_pipe() { exec 8<&- # close FD 8. - exec 9<&- # close FD 9. + exec 42<&- # close FD 42. } jive() { __jive_auto_reload __jive_open_pipe