8 lines
102 B
Bash
8 lines
102 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
||
|
|
|
||
|
|
function get_deps() {
|
||
|
|
|
||
|
|
echo "no deps"
|
||
|
|
}
|