forked from psyked/jenkins-isotope-style
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathbuild.xml
More file actions
14 lines (14 loc) · 725 Bytes
/
build.xml
File metadata and controls
14 lines (14 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="utf-8"?>
<project name="Jenkins CSS Style" default="compile" basedir=".">
<target name="compile" depends="compileCSS"/>
<target name="compileCSS">
<echo>Beginning CSS compilation process...</echo>
<exec osfamily="windows" executable="cmd" failonerror="true">
<arg line="/c sass jenkins-mmtdigital-style.scss:jenkins-mmtdigital-style.css --trace --style compressed"/>
</exec>
<exec osfamily="unix" executable="/usr/bin/sass" failonerror="true">
<arg line="jenkins-mmtdigital-style.scss:jenkins-mmtdigital-style.css --trace --style compressed"/>
</exec>
<echo>CSS compilation complete.</echo>
</target>
</project>