Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tools/install_opte.sh
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ pkg set-publisher -p "$XDE_REPO_PATH" --search-first
RC=0
pkg update || RC=$?;
if [[ "$RC" -eq 0 ]] || [[ "$RC" -eq 4 ]]; then
return 0
exit 0
else
return "$RC"
exit "$RC"
fi

# Actually install the xde kernel module and opteadm tool
Expand Down