Skip to content

Commit

Permalink
made sure the repl flag was off
Browse files Browse the repository at this point in the history
  • Loading branch information
chame1eon committed May 2, 2021
1 parent 395674d commit 669fd8a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# jnitrace Change Log

## 3.2.2
- Switched off the "in repl" flag to make sure the command args were processed

## 3.2.1
- Fixed bug where output was being written before the tracing was complete

Expand Down
2 changes: 1 addition & 1 deletion jnitrace/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { ConfigBuilder } from "jnitrace-engine";
import { MethodData } from "./utils/method_data";
import { DataTransport } from "./transport/data_transport";

const IS_IN_REPL = true;
const IS_IN_REPL = false;
const transport = new DataTransport();
let config: Config | null = null;

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jnitrace",
"version": "3.2.1",
"version": "3.2.2",
"description": "A tool for tracing use of the JNI in Android apps",
"private": true,
"main": "jnitrace/src/main.js",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='jnitrace',
version='3.2.1',
version='3.2.2',
description='A tool for tracing use of the JNI in Android apps',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 669fd8a

Please sign in to comment.