mirror of
				https://github.com/hiskang/acme.sh
				synced 2025-10-31 02:17:18 +00:00 
			
		
		
		
	Merge branch 'Neilpang/master'
This commit is contained in:
		
						commit
						2fa8a45e11
					
				
							
								
								
									
										11
									
								
								le.sh
									
									
									
									
									
								
							
							
						
						
									
										11
									
								
								le.sh
									
									
									
									
									
								
							| @ -272,12 +272,13 @@ _setopt() { | |||||||
|   __val="$4" |   __val="$4" | ||||||
|   __end="$5" |   __end="$5" | ||||||
|   if [ -z "$__opt" ] ; then  |   if [ -z "$__opt" ] ; then  | ||||||
|     echo usage: $0  '"file"  "opt"  "="  "value" [";"]' |     echo usage: _setopt  '"file"  "opt"  "="  "value" [";"]' | ||||||
|     return |     return | ||||||
|   fi |   fi | ||||||
|   if [ ! -f "$__conf" ] ; then |   if [ ! -f "$__conf" ] ; then | ||||||
|     touch "$__conf" |     touch "$__conf" | ||||||
|   fi |   fi | ||||||
|  | 
 | ||||||
|   if grep -H -n "^$__opt$__sep" "$__conf" > /dev/null ; then |   if grep -H -n "^$__opt$__sep" "$__conf" > /dev/null ; then | ||||||
|     _debug OK |     _debug OK | ||||||
|     if [[ "$__val" == *"&"* ]] ; then |     if [[ "$__val" == *"&"* ]] ; then | ||||||
| @ -285,6 +286,14 @@ _setopt() { | |||||||
|     fi |     fi | ||||||
|     text="$(cat $__conf)" |     text="$(cat $__conf)" | ||||||
|     printf "$text" | sed "s|^$__opt$__sep.*$|$__opt$__sep$__val$__end|" > "$__conf" |     printf "$text" | sed "s|^$__opt$__sep.*$|$__opt$__sep$__val$__end|" > "$__conf" | ||||||
|  | 
 | ||||||
|  |   elif grep -H -n "^#$__opt$__sep" "$__conf" > /dev/null ; then | ||||||
|  |     if [[ "$__val" == *"&"* ]] ; then | ||||||
|  |       __val="$(echo $__val | sed 's/&/\\&/g')" | ||||||
|  |     fi | ||||||
|  |     text="$(cat $__conf)" | ||||||
|  |     printf "$text" | sed "s|^#$__opt$__sep.*$|$__opt$__sep$__val$__end|" > "$__conf" | ||||||
|  | 
 | ||||||
|   else |   else | ||||||
|     _debug APP |     _debug APP | ||||||
|     echo "$__opt$__sep$__val$__end" >> "$__conf" |     echo "$__opt$__sep$__val$__end" >> "$__conf" | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user