-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcopy_logos.sh
More file actions
9 lines (7 loc) · 587 Bytes
/
copy_logos.sh
File metadata and controls
9 lines (7 loc) · 587 Bytes
1
2
3
4
5
6
7
8
9
#!/bin/bash
# Copy the logo files to the correct asset locations
cp "/hologram/data/project/lets_build_planner/.prompt_attachments/6aa22435-e203-4eed-92f4-45286987141e.png" "/hologram/data/project/lets_build_planner/assets/images/logo_horizontal.png"
cp "/hologram/data/project/lets_build_planner/.prompt_attachments/3ee0379e-1828-44a6-b937-e3729e066530.png" "/hologram/data/project/lets_build_planner/assets/images/logo_vertical.png"
echo "Logo files copied successfully!"
echo "Horizontal logo: assets/images/logo_horizontal.png"
echo "Vertical logo: assets/images/logo_vertical.png"