Skip to content

Commit 4c1be1f

Browse files
committed
ci: lines are not logged twice to the console
1 parent c9d661e commit 4c1be1f

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

build_testapp.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -e
33

44
NATIVESCRIPT_DEVELOPMENT_TEAM=${DEVELOPMENT_TEAM:-}
5-
NATIVESCRIPT_CODE_SIGN_IDENTITY=${NATIVESCRIPT_CODE_SIGN_IDENTITY:"iPhone Developer"}
5+
NATIVESCRIPT_CODE_SIGN_IDENTITY=${NATIVESCRIPT_CODE_SIGN_IDENTITY:-}
66
NATIVESCRIPT_PROVISIONING_PROFILE_SPECIFIER=${NATIVESCRIPT_PROVISIONING_PROFILE_SPECIFIER:-}
77

88
echo "Cleanup"

run-tests.js

-6
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,6 @@ testrun.stdout.on('data', function(chunks) {
109109
if (line)
110110
process.stdout.write(line + '\n');
111111
} else {
112-
if (line.indexOf("CONSOLE LOG") !== 0) {
113-
// Each line is logged by the debugger twice (to console and to logs)
114-
// Skip one of them.
115-
continue;
116-
}
117-
118112
var data = line.substr(index + term.length);
119113

120114
results.write(data);

0 commit comments

Comments
 (0)