Don't quote environment variables; it is not needed in docker for this; closes pterodactyl/panel#2030

This commit is contained in:
Dane Everitt 2020-05-17 17:06:01 -07:00
parent e83495a09e
commit 276bd2be33
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53

View File

@ -784,7 +784,7 @@ eloop:
}
}
out = append(out, fmt.Sprintf("%s=\"%s\"", strings.ToUpper(k), v))
out = append(out, fmt.Sprintf("%s=%s", strings.ToUpper(k), v))
}
return out