You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
당장은 작은 기여라도 해 보고 싶어서 good first issue 위주로 찾아보고 있는데요, 내가 기여할 수 있을만한 이슈를 찾는게 어려운 것 같습니다ㅠㅠ 현재 찾아본 건 coreutils의 #3906 이슈인데요. 괜찮을 지 모르겠지만 이번 연휴에 한 번 해볼까 합니다ㅎㅎ
지난 번에 올린 PR 은 머지되었습니다. 근데 머지 후 ci test에서 fail이 발생해서 revert 되었어요. 해당 테스트를 로컬에서 돌려보는 데 애를 먹었는데(결국 못 돌렸어요), 기존 PR 리뷰어분이 로컬에서는 fail이 나지 않는데 서버에서만 문제가 생긴다고 하더라고요. 리뷰어분이 코드를 다음과 같이 수정해 주시고 다시 머지되었습니다.
fail code
let nonames = *matches
.try_get_one("no-names").unwrap_or(Some(&false)).unwrap();
pass code
let nonames = *matches
.try_get_one("no-names").unwrap_or(None).unwrap_or(&false);
서버 테스트 fail 을 확인하는 과정이 매우 어려웠습니다 ㅠㅠ 리뷰어분 도움이 없었으면 못했을 것 같아요ㅠㅠ
The text was updated successfully, but these errors were encountered: