codeprobe-scanner 1.0.11 → 1.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/codeprobe.cjs CHANGED
@@ -45,7 +45,7 @@ const cmd = `${bunCmd} run ${path.join(packageRoot, 'src/cli/index.ts')} ${args.
45
45
  try {
46
46
  execSync(cmd, {
47
47
  stdio: 'inherit',
48
- cwd: packageRoot
48
+ cwd: process.cwd()
49
49
  });
50
50
  } catch (err) {
51
51
  process.exit(err.status || 1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeprobe-scanner",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "description": "Automated vulnerability scanner with exploit verification and video evidence",
5
5
  "type": "module",
6
6
  "bin": {
@@ -36,7 +36,7 @@ function createBranch(name: string): void {
36
36
 
37
37
  function commitAndPush(message: string, branchName: string): void {
38
38
  execSync('git add package.json', { encoding: 'utf-8', stdio: 'pipe' });
39
- execSync(`git commit -m "${message}"`, { encoding: 'utf-8', stdio: 'pipe' });
39
+ execSync(`git -c commit.gpgsign=false commit -m "${message}"`, { encoding: 'utf-8', stdio: 'pipe' });
40
40
  try {
41
41
  execSync(`git push -u origin ${branchName}`, { encoding: 'utf-8', stdio: 'pipe' });
42
42
  } catch {