Files
esp-idf-tools/custom_bin/create-project
T
2026-05-26 20:30:40 -06: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"