Automatically created when there is no bin, logs folder

pull/4/head
away 4 years ago
parent 5f12c584a9
commit 641d7c6cd4

@ -4,6 +4,16 @@ source ./style_info.cfg
source ./path_info.cfg
source ./function.sh
bin_dir="../bin"
logs_dir="../logs"
#Automatically created when there is no bin, logs folder
if [ ! -d $bin_dir ]; then
mkdir -p $bin_dir
fi
if [ ! -d $logs_dir ]; then
mkdir -p $logs_dir
fi
#begin path
begin_path=$PWD

Loading…
Cancel
Save