7 lines
109 B
Bash
Executable File
7 lines
109 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Init rbenv for psacln members
|
|
if id -Gn | grep -q '\bpsacln\b'; then
|
|
eval "$(rbenv init -)"
|
|
fi
|