# File lib/repo.rb, line 101
        def runBash()
            runSystem("bash")
            if $? == 0 then
                log(:INFO, "Continuing...")
            else
                log(:ERROR, "Shell exited with code #{$?}. Exiting")
                raise("Cancelled by user")
            end
        end