aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/ohos-check-dir.sh
blob: 2833618f9304c633308b527a7e7f7a52e4a3fe36 (plain) (blame)
1
2
3
4
5
6
7
8
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0

if [ -d "$1" ]; then
    exit 0
fi

exit 1