소스 검색

Fix Linux Mint codename

bryan 1 개월 전
부모
커밋
94206807eb
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      installJRMC

+ 6 - 0
installJRMC

@@ -1654,16 +1654,22 @@ update_self() {
 
     echo HERE3
 
+    declare -p
+
     # Compare versions and update if necessary
     local local_version
     local_version=$(extract_version "$SCRIPT_PATH")
     local remote_version
     remote_version=$(extract_version "$tmp")
 
+    echo HERE4
+
     [[ -z $remote_version ]] && { rm -f "$tmp"; return 1; }
 
     echo "$remote_version, $local_version"
 
+    echo HERE5
+
     if [[ $local_version < $remote_version ]]; then
         echo "Newer version of installJRMC found. Updating..."
         execute mv "$tmp" "$SCRIPT_PATH"