Commit b90a8bd1 authored by Rémy Coutable's avatar Rémy Coutable

Merge branch '341245-fix-startup-css-changed-check-with-foss-only' into 'master'

Fix startup_css_changed to not check `ee` if FOSS_ONLY

See merge request gitlab-org/gitlab!70720
parents 97f3119a a92c0171
......@@ -7,7 +7,13 @@ echo ""
echo "https://gitlab.com/gitlab-org/gitlab/-/issues/331812"
echo "-----------------------------------------------------------"
startup_glob="*stylesheets/startup*"
startup_glob="app/assets/stylesheets/startup*"
if ! [ "$FOSS_ONLY" ]
then
startup_glob="*${startup_glob}"
fi
echo "Staging changes to '${startup_glob}' so we can check for untracked files..."
git add "${startup_glob}"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment