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 514c956 commit 6c48a53Copy full SHA for 6c48a53
test/test_suite.sh
@@ -245,6 +245,9 @@ assert 'kscript "println(args.size)" "--params foo"' 1 ## make sure dash args a
245
assert 'kscript "println(args.size)" "foo bar"' 1 ## allow for spaces
246
assert 'kscript "println(args[0])" "foo bar"' "foo bar" ## make sure quotes are not propagated into args
247
248
+## prevent regression of 181
249
+assert 'echo "println(123)" > 123foo.kts; kscript 123foo.kts' "123"
250
+
251
252
kscript_nocall() { kotlin -classpath ${KSCRIPT_HOME}/build/libs/kscript.jar kscript.app.KscriptKt "$@";}
253
export -f kscript_nocall
0 commit comments