summaryrefslogtreecommitdiffstats
path: root/install/ui/util
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2013-10-10 14:05:54 +0200
committerMartin Kosek <mkosek@redhat.com>2014-01-21 12:04:02 +0100
commit8f5773964e756224eb51d6380a687429e7f5fa5a (patch)
tree279557c9a1043fe635abdc1d297c14c44f82b51d /install/ui/util
parentcbfed871e7d99bf54eceaf8febfc0f304fdf494e (diff)
downloadfreeipa-8f5773964e756224eb51d6380a687429e7f5fa5a.tar.gz
freeipa-8f5773964e756224eb51d6380a687429e7f5fa5a.tar.xz
freeipa-8f5773964e756224eb51d6380a687429e7f5fa5a.zip
Updated sync.sh
https://fedorahosted.org/freeipa/ticket/3902
Diffstat (limited to 'install/ui/util')
-rwxr-xr-xinstall/ui/util/sync.sh22
1 files changed, 20 insertions, 2 deletions
diff --git a/install/ui/util/sync.sh b/install/ui/util/sync.sh
index 423dc0c5b..6d03278b8 100755
--- a/install/ui/util/sync.sh
+++ b/install/ui/util/sync.sh
@@ -264,7 +264,7 @@ pushd $DIR/../../ #freeipa/install
SOURCE=ui/src/libs/*
TARGET=$TARGET_BASE/ui/js/libs
RECURSIVE=1
- EXCEPTIONS=
+ EXCEPTIONS="--exclude /Makefile* --exclude .in"
sync-files
fi
@@ -285,6 +285,12 @@ pushd $DIR/../../ #freeipa/install
RECURSIVE=0
EXCEPTIONS="--exclude /Makefile*"
sync-files
+
+ SOURCE=ui/font/*
+ TARGET=$TARGET_BASE/ui/font
+ RECURSIVE=0
+ EXCEPTIONS="--exclude /Makefile*"
+ sync-files
fi
if [[ $IMAGES ]] ; then
@@ -293,12 +299,24 @@ pushd $DIR/../../ #freeipa/install
RECURSIVE=1
EXCEPTIONS="--exclude /Makefile*"
sync-files
+
+ SOURCE=ui/img/*
+ TARGET=$TARGET_BASE/ui/img
+ RECURSIVE=1
+ EXCEPTIONS="--exclude /Makefile*"
+ sync-files
fi
if [[ $CSS ]] ; then
SOURCE=ui/*.css
TARGET=$TARGET_BASE/ui
- RECURSIVE=1
+ RECURSIVE=0
+ EXCEPTIONS="--exclude /Makefile*"
+ sync-files
+
+ SOURCE=ui/css/*.css
+ TARGET=$TARGET_BASE/ui/css
+ RECURSIVE=0
EXCEPTIONS="--exclude /Makefile*"
sync-files
fi