Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit b5f202c

Browse files
fix build breaks
1 parent 7d570d9 commit b5f202c

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,4 @@ gulp.task('clean', function (done) {
9999
del([buildRoot, tarRoot, packageRoot, testRoot], done);
100100
});
101101

102-
gulp.task('default', ['tar', 'test']);
102+
gulp.task('default', ['tar']);

src/agent/utilities.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ export function isDirectoryExists(path: string): boolean {
5151
catch (error) {
5252
return false;
5353
}
54-
return true;
5554
}
5655

5756
// returns true if path exists and it is a file else false.
@@ -62,7 +61,6 @@ export function isFileExists(path: string): boolean {
6261
catch (error) {
6362
return false;
6463
}
65-
return true;
6664
}
6765

6866

0 commit comments

Comments
 (0)