Merge pull request #625 from mr-karan/master

fix(install-prod.sh): Make `tr` work with macOS
This commit is contained in:
Kailash Nadh 2021-12-15 16:20:33 +05:30 committed by GitHub
commit 13edf426a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -77,7 +77,7 @@ is_running() {
}
generate_password(){
echo $(tr -dc A-Za-z0-9 </dev/urandom | head -c 13 ; echo '')
echo $(LC_ALL=C tr -dc A-Za-z0-9 </dev/urandom | head -c 13 ; echo '')
}
get_config() {