Skip to content

Commit

Permalink
feat: update
Browse files Browse the repository at this point in the history
  • Loading branch information
Allen Zhang (张涛) committed Jun 18, 2024
1 parent 75786c2 commit 8fb5745
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,13 @@ export class CoverageClientService {
id: {
contains: coverageClientDto.projectID,
mode: 'insensitive', // Ignore case sensitivity
not: {
contains: '-ut',
},
},
},
});

console.log(projects);
if (projects.length > 0) {
const resList = [];
for (let i = 0; i < projects.length; i++) {
Expand Down
2 changes: 1 addition & 1 deletion scripts/check.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import path from 'path';

const sourceFilePath = path.join(new URL('.', import.meta.url).pathname, '../.env.example');
const destinationFilePath = path.join(new URL('.', import.meta.url).pathname, '../.env');
console.log(process.env);

(async () => {
try {
await fs.access(destinationFilePath);
Expand Down

0 comments on commit 8fb5745

Please sign in to comment.