From 8e1234d68a94620ea96697c69f6a586fb1b034ee Mon Sep 17 00:00:00 2001 From: "James D. Forrester" Date: Sun, 21 Sep 2014 19:13:32 -0700 Subject: [PATCH] update-oojs-ui.sh: Exclude the minimised distribution files Introduced by Ic8f8194. Also removing unneeded exclusion of non-existant unthemed CSS file after Ieb27c3fd. Change-Id: Ib0293695764ac32b8aac3be7c4f37b72cbd72561 --- maintenance/resources/update-oojs-ui.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maintenance/resources/update-oojs-ui.sh b/maintenance/resources/update-oojs-ui.sh index 1b3529225a..651f211e5b 100755 --- a/maintenance/resources/update-oojs-ui.sh +++ b/maintenance/resources/update-oojs-ui.sh @@ -71,8 +71,8 @@ NEWCHANGES=$(git log $OLDHASH.. --oneline --no-merges --reverse --color=never) NEWCHANGESDISPLAY=$(git log $OLDHASH.. --oneline --no-merges --reverse --color=always) # Copy files -# - Exclude the default non-svg stylesheet -rsync --recursive --delete --force --exclude 'oojs-ui.css' --exclude 'oojs-ui*.rtl.css' ./dist/ "$TARGET_REPO/$TARGET_DIR" || exit 1 +# - Exclude the minimised distribution files and RTL sheets for non-CSSJanus environments +rsync --recursive --delete --force --exclude 'oojs-ui*.min.*' --exclude 'oojs-ui*.rtl.css' ./dist/ "$TARGET_REPO/$TARGET_DIR" || exit 1 # Read the new version NEWVERSION=$(oojsuiversion) -- 2.20.1