Created
July 15, 2015 08:39
-
-
Save 3846masa/9515b754fcfed07ee600 to your computer and use it in GitHub Desktop.
GitLabのアイコンを可愛いやつにする https://about.gitlab.com/images/logo.png
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
DEFAULT_DIR=/opt/gitlab/embedded/service/gitlab-rails/app/assets/images | |
PUBLISH_DIR=/opt/gitlab/embedded/service/gitlab-rails/public/assets | |
cd $DEFAULT_DIR | |
wget -O favicon.ico https://about.gitlab.com/ico/favicon.ico | |
wget -O brand_logo.png https://about.gitlab.com/images/logo.png | |
cp brand_logo.png logo-black.png | |
cp brand_logo.png logo-white.png | |
cd $PUBLISH_DIR | |
cp $DEFAULT_DIR/favicon.ico ./favicon-*.ico | |
cp $DEFAULT_DIR/brand_logo.png ./brand_logo-*.png | |
cp $DEFAULT_DIR/logo-black.png ./logo-black-*.png | |
cp $DEFAULT_DIR/logo-white.png ./logo-white-*.png | |
echo "Replaced."; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment