diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2026-01-28 15:10:49 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2026-01-28 15:10:49 +0000 |
| commit | e9daa340ce1bd215e71d2dc86a81207b7d61df02 (patch) | |
| tree | 6c19390d5bd336a10dcde423e2c7f7cb31914ab2 /docs/how-to | |
| parent | 3c1eda5fc9e660d40cadcdef8903aea986fe3242 (diff) | |
fix(migration): remove local keyword outside function in classify script
Diffstat (limited to 'docs/how-to')
| -rwxr-xr-x | docs/how-to/migration-scripts/40-classify-actions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/how-to/migration-scripts/40-classify-actions.sh b/docs/how-to/migration-scripts/40-classify-actions.sh index 07ae7c9..8b61636 100755 --- a/docs/how-to/migration-scripts/40-classify-actions.sh +++ b/docs/how-to/migration-scripts/40-classify-actions.sh | |||
| @@ -412,7 +412,7 @@ for key in "${!ALL_REPOS[@]}"; do | |||
| 412 | COUNTS[review_parse_failure]=$((COUNTS[review_parse_failure] + 1)) | 412 | COUNTS[review_parse_failure]=$((COUNTS[review_parse_failure] + 1)) |
| 413 | else | 413 | else |
| 414 | # Check git ancestry to see if archive is actually ahead | 414 | # Check git ancestry to see if archive is actually ahead |
| 415 | local git_relationship="${GIT_ANCESTRY[$key]:-unknown}" | 415 | git_relationship="${GIT_ANCESTRY[$key]:-unknown}" |
| 416 | 416 | ||
| 417 | if [[ "$git_relationship" == "archive-ahead" || "$git_relationship" == "in-sync" ]]; then | 417 | if [[ "$git_relationship" == "archive-ahead" || "$git_relationship" == "in-sync" ]]; then |
| 418 | # Archive has newer/same git data - this is GOOD | 418 | # Archive has newer/same git data - this is GOOD |