File tree 3 files changed +16
-2
lines changed
3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 435
435
'ext4 ' => NULL ,
436
436
),
437
437
),
438
+ 'post_execute ' => array (
439
+ 'cleanup.php ' ,
440
+ ),
438
441
);
439
442
440
443
/*
Original file line number Diff line number Diff line change
1
+ <?php
2
+ /**
3
+ * Copyright 2018 SugarCRM Inc. Licensed by SugarCRM under the Apache 2.0 license.
4
+ */
5
+ if (! defined ('sugarEntry ' ) || ! sugarEntry) die ('Not A Valid Entry Point ' );
6
+ require_once ("modules/Administration/QuickRepairAndRebuild.php " );
7
+ $ randc = new RepairAndClear ();
8
+
9
+ // Clear the theme cache so the Prof M logo will be displayed on the Login screen and the left corner of the footer
10
+ $ randc ->clearThemeCache ();
Original file line number Diff line number Diff line change @@ -137,11 +137,12 @@ getHiddenFormFieldValue(){
137
137
# This is a hack specifically for Travis CI. Travis CI outputs a string like the following in the middle
138
138
# of the SAML Response:
139
139
#
140
- # 100 12223 0 12223 0 0 16084 0 --:--:-- --:--:-- --:--:-- 16104
140
+ # 0 0 0 12608 0 0 6973 0 --:--:-- 0:00:01 --:--:-- 6973
141
+ # 0 0 0 12608 0 0 6973 0 --:--:-- 0:00:01 --:--:-- 0
141
142
# * Connection #0 to host auth.sugarcrm.com left intact
142
143
#
143
144
# This Regex Token pulls this junk out of the SAML Response
144
- newLineRegexToken=" (.*)[ [:space:]]+[[:digit:]][[:digit:]][[:digit:]][[:space:]] .*intact[[:space:]]*(.*)"
145
+ newLineRegexToken=" ([^ [:space:]]*) .*intact[[:space:]]*(.*)"
145
146
if [[ $1 == ' SAMLResponse' && $value =~ $newLineRegexToken ]]
146
147
then
147
148
value=" ${BASH_REMATCH[1]}${BASH_REMATCH[2]} "
You can’t perform that action at this time.
0 commit comments