Skip to content

Commit

Permalink
Update comments
Browse files Browse the repository at this point in the history
Signed-off-by: Teddysun <[email protected]>
  • Loading branch information
teddysun committed Jun 7, 2018
1 parent f93fb43 commit b2eaaeb
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions shadowsocks-go
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ if [ ! -d $PID_DIR ]; then
mkdir -p $PID_DIR
if [ $? -ne 0 ]; then
echo "Creating PID directory $PID_DIR failed"
RET_VAL=1
exit 1
fi
fi

if [ ! -f $CONF ]; then
echo "$NAME config file $CONF not found"
RET_VAL=1
exit 1
fi

check_running() {
Expand Down
4 changes: 2 additions & 2 deletions shadowsocks-go-debian
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ if [ ! -d $PID_DIR ]; then
mkdir -p $PID_DIR
if [ $? -ne 0 ]; then
echo "Creating PID directory $PID_DIR failed"
RET_VAL=1
exit 1
fi
fi

if [ ! -f $CONF ]; then
echo "$NAME config file $CONF not found"
RET_VAL=1
exit 1
fi

check_running() {
Expand Down
4 changes: 2 additions & 2 deletions shadowsocks-libev
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ if [ ! -d $PID_DIR ]; then
mkdir -p $PID_DIR
if [ $? -ne 0 ]; then
echo "Creating PID directory $PID_DIR failed"
RET_VAL=1
exit 1
fi
fi

if [ ! -f $CONF ]; then
echo "$NAME config file $CONF not found"
RET_VAL=1
exit 1
fi

check_running() {
Expand Down
4 changes: 2 additions & 2 deletions shadowsocks-libev-debian
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ if [ ! -d $PID_DIR ]; then
mkdir -p $PID_DIR
if [ $? -ne 0 ]; then
echo "Creating PID directory $PID_DIR failed"
RET_VAL=1
exit 1
fi
fi

if [ ! -f $CONF ]; then
echo "$NAME config file $CONF not found"
RET_VAL=1
exit 1
fi

check_running() {
Expand Down
4 changes: 2 additions & 2 deletions shadowsocks-manager
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ if [ ! -d $PID_DIR ]; then
mkdir -p $PID_DIR
if [ $? -ne 0 ]; then
echo "Creating PID directory $PID_DIR failed"
RET_VAL=1
exit 1
fi
fi

if [ ! -f $CONF ]; then
echo "$NAME config file $CONF not found"
RET_VAL=1
exit 1
fi

check_running() {
Expand Down

0 comments on commit b2eaaeb

Please sign in to comment.