summaryrefslogtreecommitdiff
path: root/sites/all/themes/zen/zen-internals/css/generate.sh
blob: c779465be32f660f53505112460a02fa688bfe82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

# This script is used by the MAINTAINER to make copies of the stylesheets for
# the base Zen theme from the stylesheets in the STARTERKIT.

rm *.css;
for FILENAME in ../../STARTERKIT/css/*.css; do
  cp ../../STARTERKIT/css/$FILENAME .;
done

# Don't need the core reference.
rm drupal7-reference.css;

rm ../images/*;
for FILENAME in ../../STARTERKIT/images/*; do
  cp ../../STARTERKIT/css/$FILENAME ../images/;
done