aidp 0.49.13 ā 0.49.14
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.
- checksums.yaml +4 -4
- data/lib/aidp/cli/issue_importer.rb +1 -1
- data/lib/aidp/setup/wizard.rb +1 -1
- data/lib/aidp/version.rb +1 -1
- data/lib/aidp/watch/runner.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e0670861e0010f7d691a78995723512362bbc9bc3562c259319e4aec8ae90bec
|
|
4
|
+
data.tar.gz: 790b9b93cb98ea2dc6c4a9c210d2943e8e78df5e6921fdd7dafdcc3bc62af309
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 05d15e5b9a97261dff4cba04fa8b830e594553d0dd0f20a29baa757e3085c076cfe32e3889d2a19f03270483cf746c1329c7127b99ba9e7c16d63b0b81e1f862
|
|
7
|
+
data.tar.gz: 94d6d3f9393050449c3fe2f1521acb793f09dd27d247422184374a398c6f4fc91f595d889a12b99b765d6475d1a3deb2360831b614df909463a02bdd6c9c86df
|
|
@@ -77,7 +77,7 @@ module Aidp
|
|
|
77
77
|
return nil unless File.exist?(".git")
|
|
78
78
|
|
|
79
79
|
# Try to get origin URL
|
|
80
|
-
stdout, _stderr, status = Open3.capture3("git remote get-url origin")
|
|
80
|
+
stdout, _stderr, status = Open3.capture3("git", "remote", "get-url", "origin")
|
|
81
81
|
return nil unless status.success?
|
|
82
82
|
|
|
83
83
|
origin_url = stdout.strip
|
data/lib/aidp/setup/wizard.rb
CHANGED
|
@@ -1343,7 +1343,7 @@ module Aidp
|
|
|
1343
1343
|
prompt.say("\nš Pull Request Configuration")
|
|
1344
1344
|
|
|
1345
1345
|
# Check if remote exists
|
|
1346
|
-
has_remote = system("git remote -v
|
|
1346
|
+
has_remote = system("git", "remote", "-v", out: File::NULL, err: File::NULL)
|
|
1347
1347
|
|
|
1348
1348
|
unless has_remote
|
|
1349
1349
|
prompt.say("No git remote detected. PR creation will be disabled.")
|
data/lib/aidp/version.rb
CHANGED
data/lib/aidp/watch/runner.rb
CHANGED
|
@@ -749,7 +749,7 @@ module Aidp
|
|
|
749
749
|
# Capture git worktree context
|
|
750
750
|
# @return [Hash] Worktree information
|
|
751
751
|
def capture_worktree_context
|
|
752
|
-
return {} unless system("git rev-parse --git-dir
|
|
752
|
+
return {} unless system("git", "rev-parse", "--git-dir", out: File::NULL, err: File::NULL)
|
|
753
753
|
|
|
754
754
|
{
|
|
755
755
|
branch: `git rev-parse --abbrev-ref HEAD`.strip,
|