added error if size not specified

This commit is contained in:
Brad Ganley 2023-05-31 11:48:42 -05:00
parent 3fb51b141d
commit 93cc71411e

View File

@ -180,6 +180,10 @@ function cntdn() {
}
function ramdisk() {
if [ -z "$1" ]; then
echo "Error: Ramdisk size not specified."
return 1
fi
if [ ! -d "$HOME/ramdown" ]; then
mkdir "$HOME/ramdown"
fi