forked from ungleich-public/cdist
		
	Disable SC2039 where appropriate.
This commit is contained in:
		
					parent
					
						
							
								a601fa91d9
							
						
					
				
			
			
				commit
				
					
						b25aff17c6
					
				
			
		
					 1 changed files with 2 additions and 0 deletions
				
			
		| 
						 | 
					@ -36,6 +36,7 @@ assert ()                 #  If condition false,
 | 
				
			||||||
	if [ ! "$1" ]
 | 
						if [ ! "$1" ]
 | 
				
			||||||
	then
 | 
						then
 | 
				
			||||||
		echo "Assertion failed:  \"$1\""
 | 
							echo "Assertion failed:  \"$1\""
 | 
				
			||||||
 | 
							# shellcheck disable=SC2039
 | 
				
			||||||
		echo "File \"$0\", line $lineno, called by $(caller 0)"
 | 
							echo "File \"$0\", line $lineno, called by $(caller 0)"
 | 
				
			||||||
		exit $E_ASSERT_FAILED
 | 
							exit $E_ASSERT_FAILED
 | 
				
			||||||
	fi  
 | 
						fi  
 | 
				
			||||||
| 
						 | 
					@ -95,6 +96,7 @@ if [ -n "$curr_version" ]; then	# PKG *is* installed
 | 
				
			||||||
				exit 0
 | 
									exit 0
 | 
				
			||||||
			else	# Current version is wrong, fix
 | 
								else	# Current version is wrong, fix
 | 
				
			||||||
				#updatepkg "$name" "$version"
 | 
									#updatepkg "$name" "$version"
 | 
				
			||||||
 | 
									# shellcheck disable=SC2039
 | 
				
			||||||
				assert "! ${version} = ${curr_version}" $LINENO
 | 
									assert "! ${version} = ${curr_version}" $LINENO
 | 
				
			||||||
				cmd="${rm_cmd} ${name}-${curr_version}"
 | 
									cmd="${rm_cmd} ${name}-${curr_version}"
 | 
				
			||||||
				execcmd "remove" "${cmd}"
 | 
									execcmd "remove" "${cmd}"
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue