mirror of https://github.com/tteck/Proxmox.git
				
				
				
			chore: the script should exit in case it doesn't find the correct file
This commit is contained in:
		
							parent
							
								
									eff35b2850
								
							
						
					
					
						commit
						42e1308d26
					
				| 
						 | 
					@ -12,13 +12,13 @@ fs_cat() {
 | 
				
			||||||
    if [ "$FS_SOURCE" == "local" ]; then
 | 
					    if [ "$FS_SOURCE" == "local" ]; then
 | 
				
			||||||
        FILE_PATH="${FS_LOCAL_ROOT}/$1";
 | 
					        FILE_PATH="${FS_LOCAL_ROOT}/$1";
 | 
				
			||||||
        if [ -f "$FILE_PATH" ]; then
 | 
					        if [ -f "$FILE_PATH" ]; then
 | 
				
			||||||
            cat "$FILE_PATH";
 | 
					            cat "$FILE_PATH" && exit;
 | 
				
			||||||
        fi;
 | 
					        fi;
 | 
				
			||||||
    elif [ "$FS_SOURCE" == "remote" ]; then
 | 
					    elif [ "$FS_SOURCE" == "remote" ]; then
 | 
				
			||||||
        curl -s "https://raw.githubusercontent.com/tteck/Proxmox/${FS_REMOTE_BRANCH}/$1";
 | 
					        curl -s "https://raw.githubusercontent.com/tteck/Proxmox/${FS_REMOTE_BRANCH}/$1" && exit;
 | 
				
			||||||
    fi;
 | 
					    fi;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    msg_error "Something went wrong while attempting to cat file: $1.";
 | 
					    echo "Something went wrong while attempting to cat file: $1.";
 | 
				
			||||||
    echo -e "\nExiting...";
 | 
					    echo -e "\nExiting...";
 | 
				
			||||||
    sleep 2;
 | 
					    sleep 2;
 | 
				
			||||||
    exit;
 | 
					    exit;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue