Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .agents/scripts/tests/test-pr-3885-recovery.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ assert_line_exists() {
fi

fail "$message"
return 1
return 0
}

run_checks() {
Expand Down
2 changes: 1 addition & 1 deletion aidevops.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2012,7 +2012,7 @@ SOPSEOF
local security_posture_script="$AGENTS_DIR/scripts/security-posture-helper.sh"
if [[ -f "$security_posture_script" ]]; then
print_info "Running security posture assessment..."
if bash "$security_posture_script" store "$project_root" 2>/dev/null; then
if bash "$security_posture_script" store "$project_root"; then
print_success "Security posture assessed and stored in .aidevops.json"
else
print_warning "Security posture assessment found issues (review with: aidevops security audit)"
Expand Down
Loading