fix bash spacing

pull/653/head
Joseph Hamman 2019-04-29 08:52:18 -07:00
rodzic 7ac4cb4932
commit 05273abb38
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -9,9 +9,9 @@ _term() {
trap _term SIGTERM
# find binder sub-directory (if present)
for dir in "./binder" "./.binder"; do
for dir in "./.binder" "./binder"; do
if [ -e $dir ]; then
binder_dir = $dir
binder_dir=$dir
fi
done