summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-11-22 22:15:27 +0300
committerAndrew Dolgov <[email protected]>2018-11-22 22:15:27 +0300
commitb2f085806040ee9eb4ea02739c507c20baf8e981 (patch)
tree29f1738d1bacfa48e9063b7ae83fce617e755b38 /utils
parentd5256c8228736a7bf799b4df42dab5516af513a3 (diff)
sanity config: fix typo
Diffstat (limited to 'utils')
-rwxr-xr-xutils/regen_config_checks.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/regen_config_checks.sh b/utils/regen_config_checks.sh
index e81d3673e..5ddbef091 100755
--- a/utils/regen_config_checks.sh
+++ b/utils/regen_config_checks.sh
@@ -8,7 +8,7 @@ echo -n "define('GENERATED_CONFIG_CHECK', " >> $DESTINATION
grep CONFIG_VERSION config.php-dist | awk -F ' |)' '{ print $2 }' | xargs echo -n >> $DESTINATION
echo ");" >> $DESTINATION
-echo -n "\$requred_defines = array( " >> $DESTINATION
+echo -n "\$required_defines = array( " >> $DESTINATION
grep define\( config.php-dist | awk -F\' '{ print "*" $2 "*," }' | grep -v DB_PORT | xargs echo -n | sed -e s/,$// -e s/*/\'/g >> $DESTINATION