Skip to content

Commit 9a27a61

Browse files
committed
[GR-50837] Correct description in changelog.
PullRequest: graalpython/3102
2 parents 3643569 + 39bbd2a commit 9a27a61

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ language runtime. The main focus is on user-observable behavior of the engine.
2020
*Adding integration with jBang (https://www.jbang.dev/)
2121
** running example via `jbang hello@oracle/graalpython` or `jbang hello@oracle/graalpython "print(1*4)"`
2222
** creating new script via: `jbang init --template=graalpy@oracle/graalpython myscript.java`
23-
** creating new script with local maven repo for testing: `jbang init --template=graalpy@oracle/graalpython -Dpath_to_local_repo=/absolute/path/to/local/maven/repository myscript.java'
23+
** creating new script with local maven repo for testing: `jbang init --template=graalpy_local_repo@oracle/graalpython -Dpath_to_local_repo=/absolute/path/to/local/maven/repository myscript.java'
2424

2525
## Version 23.1.0
2626
* Oracle GraalPy distributions (previously known as GraalPy Enterprise) are now available under the [GFTC license](https://www.oracle.com/downloads/licenses/graal-free-license.html). The community builds published on Github have been renamed to `graalpy-community-<version>-<os>-<arch>.tar.gz`.

graalpython/graalpy-jbang/templates/graalpy-template.java.qute

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import org.graalvm.python.embedding.utils.VirtualFileSystem;
1818

1919
public class {baseName} {
2020
public static void main(String[] args) {
21-
System.out.println("Running2");
21+
2222
try (Context context = VirtualGraalPyContext.getContext()) {
2323
switch (args.length) {
2424
case 0:

graalpython/graalpy-jbang/templates/graalpy-template_local_repo.java.qute

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import org.graalvm.python.embedding.utils.VirtualFileSystem;
2020

2121
public class {baseName} {
2222
public static void main(String[] args) {
23-
System.out.println("Running2");
23+
2424
try (Context context = VirtualGraalPyContext.getContext()) {
2525
switch (args.length) {
2626
case 0:

0 commit comments

Comments
 (0)