Skip to content

Commit e5f4b33

Browse files
committed
Update tsc incompatible errors
1 parent d55a6ae commit e5f4b33

File tree

5 files changed

+17
-11
lines changed

5 files changed

+17
-11
lines changed

node/internal.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,12 @@ function _tryGetExecutablePath(filePath: string, extensions: string[]): string {
507507
// R W X R W X R W X
508508
// 256 128 64 32 16 8 4 2 1
509509
function isUnixExecutable(stats: fs.Stats) {
510-
return (stats.mode & 1) > 0 || ((stats.mode & 8) > 0 && stats.gid === process.getgid()) || ((stats.mode & 64) > 0 && stats.uid === process.getuid());
510+
const uid = process.getuid?.(); // Use optional chaining here
511+
const gid = process.getgid?.();
512+
513+
return (stats.mode & 1) > 0 ||
514+
((stats.mode & 8) > 0 && gid !== undefined && stats.gid === gid) ||
515+
((stats.mode & 64) > 0 && uid !== undefined && stats.uid === uid);
511516
}
512517

513518
export function _legacyFindFiles_convertPatternToRegExp(pattern: string): RegExp {

node/package-lock.json

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "azure-pipelines-task-lib",
3-
"version": "4.4.0",
3+
"version": "5.4.0",
44
"description": "Azure Pipelines Task SDK",
55
"main": "./task.js",
66
"typings": "./task.d.ts",
@@ -42,7 +42,7 @@
4242
"@types/node": "^20.3.1",
4343
"@types/q": "^1.5.4",
4444
"@types/semver": "^7.3.4",
45-
"@types/shelljs": "^0.8.8",
45+
"@types/shelljs": "^0.8.12",
4646
"mocha": "^9.2.2",
4747
"typescript": "^5.1.6"
4848
}

node/task.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,8 @@ export function mkdirP(p: string): void {
781781
let testDir: string = p;
782782
while (true) {
783783
// validate the loop is not out of control
784-
if (stack.length >= (process.env['TASKLIB_TEST_MKDIRP_FAILSAFE'] || 1000)) {
784+
const failsafeLimit = parseInt(process.env['TASKLIB_TEST_MKDIRP_FAILSAFE'] || '1000', 10);
785+
if (stack.length >= failsafeLimit) {
785786
// let the framework throw
786787
debug('loop is out of control');
787788
fs.mkdirSync(p);

node/toolrunner.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1066,7 +1066,7 @@ class ExecState extends events.EventEmitter {
10661066
private delay = 10000; // 10 seconds
10671067
private done: boolean;
10681068
private options: IExecOptions;
1069-
private timeout: NodeJS.Timer | null = null;
1069+
private timeout: NodeJS.Timeout | null = null;
10701070
private toolPath: string;
10711071

10721072
public CheckComplete(): void {

0 commit comments

Comments
 (0)