We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 342d3c1 commit 6fa23e4Copy full SHA for 6fa23e4
bootstrap.sh
@@ -65,8 +65,12 @@ main() {
65
exit 1
66
fi
67
read -p "Enter a project name: " PROJECT_NAME </dev/tty
68
+ read -n 1 -p "Would you like to use tailwind? (y/n) " TAILWIND_CHOICE </dev/tty
69
+ echo
70
else
71
read -p "Enter a project name: " PROJECT_NAME
72
+ read -n 1 -p "Would you like to use tailwind? (y/n) " TAILWIND_CHOICE
73
74
75
# Prompt the user for the project name interactively
76
if [ -z "$PROJECT_NAME" ]; then
@@ -92,6 +96,9 @@ main() {
92
96
93
97
94
98
99
+ if [[ "$TAILWIND_CHOICE" == "y" ]] || [[ "$TAILWIND_CHOICE" == "Y" ]]; then
100
+ ZIP_NAME="template-tailwind.zip"
101
+ fi
95
102
# Download and extract the framework
103
download_framework
104
0 commit comments