Skip to content

Commit 3caa875

Browse files
Copilotrfay
andauthored
Fix setup script to update index.html title when using default value (#8)
Co-authored-by: rfay <112444+rfay@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
1 parent 280d342 commit 3caa875

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

setup-template.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ if [ "$CONFIRM" != "y" ]; then
3636
read -p "Enter repository name: " REPO
3737
fi
3838

39-
read -p "Enter presentation title [Presentation Title]: " TITLE
40-
TITLE=${TITLE:-"Presentation Title"}
39+
read -p "Enter presentation title [$REPO]: " TITLE
40+
TITLE=${TITLE:-"$REPO"}
4141

4242
# Replace placeholders in files
4343
echo

0 commit comments

Comments
 (0)