소스 검색

add checkout for install.sh script

blezz-tech 2 주 전
부모
커밋
425e5560fd
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      bin/install.sh

+ 1 - 0
bin/install.sh

@@ -40,6 +40,7 @@ update_repository() {
         # If the directory exists, then do a git pull
         echo "Updating $repo_dir..."
         cd "$repo_dir" || exit
+        git checkout $repo_branch
         git pull
         cd - || exit
     else