@@ -9,34 +9,34 @@ TINYUSB_REPO_DIR="$AR_COMPS/arduino_tinyusb/tinyusb"
9
9
#
10
10
# CLONE/UPDATE ESP32-CAMERA
11
11
#
12
- echo " Updating ESP32 Camera..."
13
- if [ ! -d " $AR_COMPS /esp32-camera" ]; then
14
- git clone -b master --recursive --depth 1 --shallow-submodule $CAMERA_REPO_URL " $AR_COMPS /esp32-camera"
15
- else
16
- cd " $AR_COMPS /esp32-camera"
17
- git pull
18
- git submodule update --depth 1
19
- # -ff is for cleaning untracked files as well as submodules
20
- git clean -ffdx
21
- cd -
22
- fi
23
- if [ $? -ne 0 ]; then exit 1; fi
12
+ # echo "Updating ESP32 Camera..."
13
+ # if [ ! -d "$AR_COMPS/esp32-camera" ]; then
14
+ # git clone -b master --recursive --depth 1 --shallow-submodule $CAMERA_REPO_URL "$AR_COMPS/esp32-camera"
15
+ # else
16
+ # cd "$AR_COMPS/esp32-camera"
17
+ # git pull
18
+ # git submodule update --depth 1
19
+ # # -ff is for cleaning untracked files as well as submodules
20
+ # git clean -ffdx
21
+ # cd -
22
+ # fi
23
+ # if [ $? -ne 0 ]; then exit 1; fi
24
24
25
25
#
26
26
# Arduino needs cam_hal.h from esp32-camera in include folder
27
27
#
28
- cp " $AR_COMPS /esp32-camera/driver/private_include/cam_hal.h" " $AR_COMPS /esp32-camera/driver/include/"
28
+ # cp "$AR_COMPS/esp32-camera/driver/private_include/cam_hal.h" "$AR_COMPS/esp32-camera/driver/include/"
29
29
30
30
#
31
31
# CLONE/UPDATE TINYUSB
32
32
#
33
- echo " Updating TinyUSB..."
34
- if [ ! -d " $TINYUSB_REPO_DIR " ]; then
35
- git clone -b master --depth 1 " $TINYUSB_REPO_URL " " $TINYUSB_REPO_DIR "
36
- else
37
- cd $TINYUSB_REPO_DIR
38
- git pull
39
- # -ff is for cleaning untracked files as well as submodules
40
- git clean -ffdx
41
- fi
42
- if [ $? -ne 0 ]; then exit 1; fi
33
+ # echo "Updating TinyUSB..."
34
+ # if [ ! -d "$TINYUSB_REPO_DIR" ]; then
35
+ # git clone -b master --depth 1 "$TINYUSB_REPO_URL" "$TINYUSB_REPO_DIR"
36
+ # else
37
+ # cd $TINYUSB_REPO_DIR
38
+ # git pull
39
+ # # -ff is for cleaning untracked files as well as submodules
40
+ # git clean -ffdx
41
+ # fi
42
+ # if [ $? -ne 0 ]; then exit 1; fi
0 commit comments