From: James D. Forrester Date: Mon, 22 Sep 2014 02:13:32 +0000 (-0700) Subject: update-oojs-ui.sh: Exclude the minimised distribution files X-Git-Tag: 1.31.0-rc.0~13692^2 X-Git-Url: https://git.cyclocoop.org//%22?a=commitdiff_plain;h=8e1234d68a94620ea96697c69f6a586fb1b034ee;p=lhc%2Fweb%2Fwiklou.git 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 --- 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)