summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-x[-rw-r--r--]scripts/checkschema.php0
-rwxr-xr-xscripts/stopdaemons.sh2
-rwxr-xr-xscripts/update_translations.php5
3 files changed, 5 insertions, 2 deletions
diff --git a/scripts/checkschema.php b/scripts/checkschema.php
index bf52abe15..bf52abe15 100644..100755
--- a/scripts/checkschema.php
+++ b/scripts/checkschema.php
diff --git a/scripts/stopdaemons.sh b/scripts/stopdaemons.sh
index 55b404c1a..90e7331ca 100755
--- a/scripts/stopdaemons.sh
+++ b/scripts/stopdaemons.sh
@@ -25,7 +25,7 @@ DIR=`php $SDIR/getpiddir.php`
for f in jabberhandler ombhandler publichandler smshandler pinghandler \
xmppconfirmhandler xmppdaemon twitterhandler facebookhandler \
- twitterstatusfetcher synctwitterfriends; do
+ twitterstatusfetcher synctwitterfriends pluginhandler; do
FILES="$DIR/$f.*.pid"
for ff in "$FILES" ; do
diff --git a/scripts/update_translations.php b/scripts/update_translations.php
index 580c472ee..45fe460a0 100755
--- a/scripts/update_translations.php
+++ b/scripts/update_translations.php
@@ -109,7 +109,10 @@ foreach ($languages as $language) {
file_put_contents($pofile, $new_file);
// --backup=off is workaround for Mac OS X fail
system(sprintf('msgmerge -U --backup=off %s %s', $pofile, $statusnet_pot));
- system(sprintf('msgfmt -f -o %s %s', $mofile, $pofile));
+ /* Do not rebuild/add .mo files by default
+ * FIXME: should be made a command line parameter.
+ system(sprintf('msgfmt -o %s %s', $mofile, $pofile));
+ */
} else {
echo "Unchanged - ".$code."\n";
}