Skip to content

Commit ce53e96

Browse files
committed
Remove local install settings from the github repo
1 parent 5eaaa5b commit ce53e96

File tree

2 files changed

+4
-16
lines changed

2 files changed

+4
-16
lines changed

build.xml

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,18 @@
1212
<!-- directory structure setup -->
1313
<property name="ledcontrol.src" value="${basedir}/LedControl"/>
1414
<property name="dist.dir" value="${basedir}/dist"/>
15-
<loadproperties srcFile="local.properties"/>
1615

1716
<target name="help" >
1817
<echo message="
19-
Buildscript for packaging and installing the Arduino LedControl library ${line.separator}
20-
'ant zip' create a zip-file of the library ${line.separator}
21-
'ant install' install the library into the users sketchbook ${line.separator}
18+
Buildscript for packaging the Arduino LedControl library ${line.separator}
19+
'ant dist' create a zip-file of the library in ${dist.dir}${line.separator}
2220
"
2321
/>
2422

2523
</target>
2624

2725
<!-- create the text display zip files for library distribuion -->
28-
<target name="ledcontrol.zip" >
26+
<target name="ledcontrol.dist" >
2927
<mkdir dir="${dist.dir}" />
3028
<delete file="${dist.dir}/LedControl-${ledcontrol.zip-version}.zip" />
3129
<zip destfile="${dist.dir}/LedControl-${ledcontrol.zip-version}.zip">
@@ -44,17 +42,9 @@
4442
</zip>
4543
</target>
4644

47-
<target name="ledcontrol.install" depends="ledcontrol.zip">
48-
<unzip src="${dist.dir}/LedControl-${ledcontrol.zip-version}.zip"
49-
dest="${install.dir}"
50-
overwrite="true" />
51-
</target>
52-
53-
<target name="install" depends="ledcontrol.install" />
54-
5545

5646
<!-- create all zip files for library distribuion -->
57-
<target name="zip" depends="ledcontrol.zip" />
47+
<target name="dist" depends="ledcontrol.dist" />
5848

5949
</project>
6050

local.properties

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)