This commit is contained in:
Jordan Roher 2023-04-20 21:47:52 -07:00
parent 20a5752c7c
commit 9cb033a39d

View File

@ -7,7 +7,7 @@ echo "Replacing HTMLTITLE with ${title} in /app/src/main.tsx"
sed -i -e 's/HTMLTITLE/'"${TITLE}"'/g' /app/src/main.tsx sed -i -e 's/HTMLTITLE/'"${TITLE}"'/g' /app/src/main.tsx
# Escape slashes... apparently # Escape slashes... apparently
LOGO=${LOGOFILE//\//\\/} LOGO=${LOGO//\//\\/}
echo "Replacing LOGO with ${LOGO} in /app/src/main.tsx" echo "Replacing LOGO with ${LOGO} in /app/src/main.tsx"
sed -i -e 's/LOGO/'"${LOGO}"'/g' /app/src/main.tsx sed -i -e 's/LOGO/'"${LOGO}"'/g' /app/src/main.tsx