We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96a6194 commit f32865cCopy full SHA for f32865c
kshell/pom.xml
@@ -126,7 +126,7 @@
126
<archive>
127
<manifest>
128
<!-- addClasspath>true</addClasspath> -->
129
- <mainClass>sparklin.repl.Main</mainClass>
+ <mainClass>com.github.khud.sparklin.kshell.KotlinShell</mainClass>
130
</manifest>
131
</archive>
132
</configuration>
kshell/src/main/kotlin/com/github/khud/sparklin/kshell/KShell.kt
@@ -192,6 +192,7 @@ open class KShell(val disposable: Disposable,
192
} }
193
catch (e: UserInterruptException) { if (settings.overrideSignals) state.lineIndex.getAndIncrement() else break }
194
catch (ee: EndOfFileException) { break }
195
+ catch (ex: Exception) { ex.printStackTrace() }
196
} while (true)
197
198
cleanUp()
0 commit comments