1#! /bin/bash
2# SPDX-License-Identifier: GPL-2.0
3
4if [ -d "$1" ]; then
5    exit 0
6fi
7
8exit 1
9