xref: /aosp_15_r20/external/vboot_reference/scripts/image_signing/lib/sudo_stub.sh (revision 8617a60d3594060b7ecbd21bc622a7c14f3cf2bc)
1#!/bin/bash
2
3# Copyright 2023 The ChromiumOS Authors
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7#######################################
8# Stub call to sudo.
9#######################################
10sudo() {
11  "$@"
12}
13