Files
esp-idf-tools/custom_bin/create-project
T
2025-12-17 07:40:46 -07:00

9 lines
156 B
Bash
Executable File

#!/bin/bash
if [[ ! -z "$1" ]]; then
projname="$1"
else
echo "Enter Project Name"
read projname;
fi
idf.py --preview create-project "$projname"