We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 732450e commit bd5734eCopy full SHA for bd5734e
scripts/bootstrap.sh
@@ -23,7 +23,10 @@ main() {
23
24
if [ -n "$(which robocat)" ]; then
25
log_i "Starting Robocat..."
26
- robocat &
+ if [ -n "$ROBOCAT_ARGS" ]; then
27
+ log_d "Running robocat with arguments: $ROBOCAT_ARGS"
28
+ fi
29
+ robocat $ROBOCAT_ARGS &
30
last_process=$!
31
fi
32
scripts/run.sh
@@ -100,10 +100,13 @@ main() {
100
101
rm -rf $ROBOCAT_HOME/tagui/src/chrome/tagui_user_profile
102
tagui "$FLOW_PATH" "$DATA_PATH"
103
+ taguiStatus=$?
104
105
kill_tinyproxy
106
107
cleanup_flow_directory
108
+
109
+ exit $taguiStatus
110
}
111
112
log_i() {
0 commit comments