Add a work around for missing assets/select2.png error on web console
This commit is contained in:
parent
d1fadde153
commit
b0746d46d1
1 changed files with 6 additions and 0 deletions
6
debian/rake-tasks.sh
vendored
6
debian/rake-tasks.sh
vendored
|
@ -41,5 +41,11 @@ runuser -u ${gitlab_user} -- sh -c '/usr/bin/bundle exec rake gettext:po_to_json
|
||||||
echo "Precompiling assets..."
|
echo "Precompiling assets..."
|
||||||
runuser -u ${gitlab_user} -- sh -c '/usr/bin/bundle exec rake tmp:cache:clear assets:precompile'
|
runuser -u ${gitlab_user} -- sh -c '/usr/bin/bundle exec rake tmp:cache:clear assets:precompile'
|
||||||
|
|
||||||
|
# Workaround for https://gitlab.com/gitlab-org/gitlab/-/issues/213245
|
||||||
|
echo "Adding symbolic link for assets/select2.png..."
|
||||||
|
runuser -u ${gitlab_user} -- sh -c 'cd /usr/share/gitlab/public/assets && \
|
||||||
|
if ! [ -f select2.png ]; then \
|
||||||
|
ln -s select2-d6b5d8d83dbc18fb8d77c8761d331cd9e5123c9684950bab0406e98a24ac5ae8.png select2.png; fi'
|
||||||
|
|
||||||
echo "Webpacking..."
|
echo "Webpacking..."
|
||||||
runuser -u ${gitlab_user} -- sh -c 'webpack --config config/webpack.config.js'
|
runuser -u ${gitlab_user} -- sh -c 'webpack --config config/webpack.config.js'
|
||||||
|
|
Loading…
Reference in a new issue