Skip to content

Commit d3b1bdf

Browse files
committed
fix the pull command
1 parent b1fb468 commit d3b1bdf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

install_script_tools.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ fi
2020
# go into $DEXTER
2121
cd $DEXTER
2222

23-
# check if lib exists, if not create it
23+
# check if /home/pi/Dexter/lib exists, if not create it
2424
if [ ! -d $LIB ] ; then
2525
mkdir $LIB
2626
fi
2727

2828
# check if /home/pi/Dexter/lib/Dexter exists
2929
# if yes refresh the folder
3030
# if not, clone the folder
31-
if [ ! -d $DEXTER ] ; then
31+
if [ -d $DEXTER ] ; then
3232
cd $DEXTER
3333
sudo git pull
3434
else

0 commit comments

Comments
 (0)