]> git.ipfire.org Git - thirdparty/dehydrated.git/commitdiff
don't use '-r' on sed
authorLukas Schauer <lukas@schauer.so>
Mon, 7 Dec 2015 10:36:27 +0000 (11:36 +0100)
committerLukas Schauer <lukas@schauer.so>
Mon, 7 Dec 2015 10:36:27 +0000 (11:36 +0100)
letsencrypt.sh

index 14d42cae199eb1ab108989db8de5ca0630056ff5..7a416089c103443b3fbfc2da8d2e83dd13844946 100755 (executable)
@@ -31,7 +31,7 @@ anti_newline() {
 
 urlbase64() {
   # urlbase64: base64 encoded string with '+' replaced with '-' and '/' replaced with '_'
-  openssl base64 -e | anti_newline | sed -r 's/=*$//g' | tr '+/' '-_'
+  openssl base64 -e | anti_newline | sed 's/=*$//g' | tr '+/' '-_'
 }
 
 hex2bin() {