Skip to content

Commit

Permalink
스크립트 실행 중 발생한 오류를 보면, mv 명령어가 developLog/book/http.md 파일을 developLog/…
Browse files Browse the repository at this point in the history
…book/그림으로 쉽게 이해하는 웹/HTTP/네트워크.md로 이동하려고 시도했지만, 대상 디렉토리가 존재하지 않아 오류가 발생한 것 수정
  • Loading branch information
GoldenPearls authored Aug 28, 2024
1 parent f501f47 commit ac2e22c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/Rename and Commit Markdown Files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ jobs:
dir=$(dirname "$file")
new_filename="$dir/$title.md"
# 대상 디렉토리가 없으면 생성
new_dir=$(dirname "$new_filename")
mkdir -p "$new_dir"
# 파일 이름이 동일한 경우에도 강제로 업데이트
if [ "$file" != "$new_filename" ]; then
echo "Renaming $file to $new_filename"
Expand Down

0 comments on commit ac2e22c

Please sign in to comment.