Skip to content

Commit

Permalink
Merge pull request #1021 from OpenC3/continue_if_local_init_fails
Browse files Browse the repository at this point in the history
continue if local init fails
  • Loading branch information
ryanmelt authored Jan 8, 2024
2 parents b67066d + 911bcfd commit ae954d2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion openc3-cosmos-init/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ if [ -z $OPENC3_NO_TOOLADMIN ]; then
fi

if [ ! -z $OPENC3_LOCAL_MODE ]; then
ruby /openc3/bin/openc3cli localinit || exit 1
# Continue if local init fails - User will have to fix manually
ruby /openc3/bin/openc3cli localinit || true
fi
if [ ! -z $OPENC3_DEMO ]; then
ruby /openc3/bin/openc3cli load /openc3/plugins/gems/openc3-cosmos-demo-*.gem || exit 1
Expand Down

0 comments on commit ae954d2

Please sign in to comment.