Fix identation typo

This commit is contained in:
Rafael Mardojai CM 2019-07-23 17:53:01 -05:00
parent f2e8d4c123
commit a8a27ca3b3
1 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ fi
# Enter Firefox profile folder. # Enter Firefox profile folder.
if ! cd $PROFILEFOLDER ; then if ! cd $PROFILEFOLDER ; then
echo "Error entering profile folder." echo "Error entering profile folder."
exit 1 exit 1
fi fi
@ -47,7 +47,7 @@ sed -i '1s/^/@import "firefox-gnome-theme\/userChrome.css";\n/' userChrome.css
# If GNOMISH extras enabled, import it in customChrome.css. # If GNOMISH extras enabled, import it in customChrome.css.
if [ "$GNOMISHEXTRAS" = true ] ; then if [ "$GNOMISHEXTRAS" = true ] ; then
echo "Enabling GNOMISH extra features" echo "Enabling GNOMISH extra features"
[[ -s customChrome.css ]] || echo >> firefox-gnome-theme/customChrome.css [[ -s customChrome.css ]] || echo >> firefox-gnome-theme/customChrome.css
sed -i '1s/^/@import "theme\/hide-single-tab.css";\n/' firefox-gnome-theme/customChrome.css sed -i '1s/^/@import "theme\/hide-single-tab.css";\n/' firefox-gnome-theme/customChrome.css
sed -i '2s/^/@import "theme\/matching-autocomplete-width.css";\n/' firefox-gnome-theme/customChrome.css sed -i '2s/^/@import "theme\/matching-autocomplete-width.css";\n/' firefox-gnome-theme/customChrome.css
fi fi