forked from ungleich-public/cdist
		
	Fix SC2164
This commit is contained in:
		
					parent
					
						
							
								738f053877
							
						
					
				
			
			
				commit
				
					
						c01cf38660
					
				
			
		
					 2 changed files with 3 additions and 3 deletions
				
			
		|  | @ -1,3 +1,3 @@ | |||
| #!/bin/sh | ||||
| cd /dev | ||||
| cd /dev || exit 0 | ||||
| echo sd? hd? vd? | ||||
|  |  | |||
|  | @ -32,7 +32,7 @@ destination_dir="${destination%/*}" | |||
| 
 | ||||
| case "$type" in | ||||
|    symbolic) | ||||
|       cd "$destination_dir" | ||||
|       cd "$destination_dir" || exit 1 | ||||
|       source_is=$(ls -l "$destination" | sed 's/.*-> //g') | ||||
|       if [ -h "$destination" ]; then | ||||
|          # ignore trailing slashes for comparison | ||||
|  | @ -46,7 +46,7 @@ case "$type" in | |||
|       fi | ||||
|    ;; | ||||
|    hard) | ||||
|       cd "$destination_dir" | ||||
|       cd "$destination_dir" || exit 1 | ||||
|       # check source relative to destination_dir | ||||
|       if [ ! -e "$source" ]; then | ||||
|          echo sourcemissing | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue