Skip to content

Commit

Permalink
chore(startup): update startup shell
Browse files Browse the repository at this point in the history
  • Loading branch information
huangyoukun committed May 30, 2018
1 parent 7105eb4 commit bf636a1
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions bin/proxy/so.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,28 +32,31 @@ echo "copy so done"
if [ -e "../log" ]
then
echo "log exists"
chmod 777 ../log
else
echo "mkdir log"
mkdir ../log
chmod -R 777 ../log
chmod 777 ../log
fi

if [ -e "../log/diff" ]
then
echo "log/diff exists"
chmod 777 ../log/diff
else
echo "mkdir diff"
mkdir ../log/diff
chmod -R 777 ../log/diff
chmod 777 ../log/diff
fi

if [ -e "../log/cache" ]
then
echo "log/cache exists"
chmod 777 ../log/cache
else
echo "mkdir cache"
mkdir ../log/cache
chmod -R 777 ../log/cache
chmod 777 ../log/cache
fi


Expand Down

0 comments on commit bf636a1

Please sign in to comment.