Merge pull request #625 from mr-karan/master
fix(install-prod.sh): Make `tr` work with macOS
This commit is contained in:
commit
13edf426a6
1 changed files with 1 additions and 1 deletions
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue