Skip to content

Commit 428f37e

Browse files
committed
bugfix: fix shell scripts
Make the CI happy
1 parent bc17549 commit 428f37e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
INSTALL_PATH=$(dirname $(readlink -f $0))/..
3+
INSTALL_PATH=$(dirname "$(readlink -f $0)")/..
44
CMDS="reset_config srst_only srst_push_pull; init"
55

66
$INSTALL_PATH/bin/openocd -d2 -s ${INSTALL_PATH} -f openocd_gpiod.cfg -c "$CMDS"

debos-recipes/overlays/arduino-unoq-releases/opt/openocd/bin/arduino-flash.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
INSTALL_PATH=$(dirname $(readlink -f $0))/..
3+
INSTALL_PATH=$(dirname "$(readlink -f $0)")/..
44

55
if [ $# -eq 2 ] ; then
66
ZEPHYR=$1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
INSTALL_PATH=$(dirname $(readlink -f $0))/..
3+
INSTALL_PATH=$(dirname "$(readlink -f $0)")/..
44
CMDS="reset_config srst_only srst_push_pull; init; reset; shutdown"
55

66
$INSTALL_PATH/bin/openocd -d2 -s ${INSTALL_PATH} -f openocd_gpiod.cfg -c "$CMDS"

0 commit comments

Comments
 (0)