13 lines
224 B
Bash
Executable File
13 lines
224 B
Bash
Executable File
# SPDX-FileCopyrightText: 2023 Marlon W (Mawoka)
|
|
#
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
if [ ! -d /tmp/storage ]; then
|
|
echo "making storage"
|
|
mkdir /tmp/storage
|
|
else
|
|
echo "storage already exists"
|
|
|
|
# end of file
|
|
fi
|