xref
: /
kernel
/
linux
/
linux-5.10
/
scripts
/
ohos-check-dir.sh
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
only in
/kernel/linux/linux-5.10/scripts/
1
#! /
bin
/
bash
2
# SPDX-License-Identifier: GPL-2.0
3
4
if
[ -d
"$1"
];
then
5
exit
0
6
fi
7
8
exit
1
9