[gedit/wip/3.14-osx] [osx] Fix mixed whitespacing styles



commit 3f89ae7c488d993964ea366144a5875f1affcbde
Author: Jesse van den Kieboom <jessevdk gmail com>
Date:   Mon Aug 25 19:01:33 2014 +0200

    [osx] Fix mixed whitespacing styles

 osx/bundle/bundle |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/osx/bundle/bundle b/osx/bundle/bundle
index d9b658e..cf8eed8 100755
--- a/osx/bundle/bundle
+++ b/osx/bundle/bundle
@@ -80,9 +80,9 @@ function cmd_make() {
                lbin=$("$b" env local-bin)
 
                echo "Generating bundle from gedit.bundle specification..."
-           "$b" run "$lbin/gtk-mac-bundler" "$D/data/gedit.bundle" || exit 1
+               "$b" run "$lbin/gtk-mac-bundler" "$D/data/gedit.bundle" || exit 1
 
-           mv "$D/data/gedit.app" "$BUNDLE"
+               mv "$D/data/gedit.app" "$BUNDLE"
        else
                echo "$BUNDLE bundle already exists, only stripping it..."
        fi
@@ -98,14 +98,14 @@ function cmd_make() {
 
        # Strip debug symbols from libraries/modules
        for i in $(find -E "$BUNDLE/Contents/Resources" -type f -regex '.*\.(so|dylib)$' 2>/dev/null); do
-           do_strip "$i"
+               do_strip "$i"
        done
 
        # Strip debug symbols from binaries
        for i in $(find "$BUNDLE/Contents/Resources/bin" -type f 2>/dev/null); do
-           if [ -x "$i" ]; then
-               do_strip "$i"
-           fi
+               if [ -x "$i" ]; then
+                       do_strip "$i"
+               fi
        done
 
        # Strip debug symbols from main binary


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]