Skip to content

Commit 100eab0

Browse files
committed
fix(scripts): update chmod permissions for Linux startup script
- Change chmod from `u+x` to `+x` for node executable to apply permissions to all users - Ensures consistent permission handling across all executables in startup script - Aligns with existing chmod pattern used for pmhq executable
1 parent b1b59be commit 100eab0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

script/start-linux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
22

3-
chmod u+x $SCRIPT_DIR/llbot/node
3+
chmod +x $SCRIPT_DIR/llbot/node
44
chmod +x $SCRIPT_DIR/llbot/pmhq
55

66
$SCRIPT_DIR/llbot/node $SCRIPT_DIR/llbot/llonebot.js &

0 commit comments

Comments
 (0)