mirror of
				https://github.com/acmesh-official/acme.sh
				synced 2025-11-04 13:55:56 +08:00 
			
		
		
		
	Merge pull request #4349 from tcx4c70/fix/save-conf
Fix error during saving conf
This commit is contained in:
		
							
								
								
									
										6
									
								
								acme.sh
									
									
									
									
									
								
							
							
						
						
									
										6
									
								
								acme.sh
									
									
									
									
									
								
							@@ -2266,6 +2266,9 @@ _setopt() {
 | 
			
		||||
    if _contains "$__val" "&"; then
 | 
			
		||||
      __val="$(echo "$__val" | sed 's/&/\\&/g')"
 | 
			
		||||
    fi
 | 
			
		||||
    if _contains "$__val" "|"; then
 | 
			
		||||
      __val="$(echo "$__val" | sed 's/|/\\|/g')"
 | 
			
		||||
    fi
 | 
			
		||||
    text="$(cat "$__conf")"
 | 
			
		||||
    printf -- "%s\n" "$text" | sed "s|^$__opt$__sep.*$|$__opt$__sep$__val$__end|" >"$__conf"
 | 
			
		||||
 | 
			
		||||
@@ -2273,6 +2276,9 @@ _setopt() {
 | 
			
		||||
    if _contains "$__val" "&"; then
 | 
			
		||||
      __val="$(echo "$__val" | sed 's/&/\\&/g')"
 | 
			
		||||
    fi
 | 
			
		||||
    if _contains "$__val" "|"; then
 | 
			
		||||
      __val="$(echo "$__val" | sed 's/|/\\|/g')"
 | 
			
		||||
    fi
 | 
			
		||||
    text="$(cat "$__conf")"
 | 
			
		||||
    printf -- "%s\n" "$text" | sed "s|^#$__opt$__sep.*$|$__opt$__sep$__val$__end|" >"$__conf"
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user