Don't specify the basedir

By default, Ant will use the parent directory of the buildfile, which is what we were setting it to be anyways. By letting Ant use its default, the buildfile will work in home directories of users other than swg if you wanted it to.
This commit is contained in:
Tekaoh
2021-01-21 17:20:44 -05:00
committed by GitHub
parent 1f752d0326
commit 723d991b27

View File

@@ -1,4 +1,4 @@
<project name="SWGBuild" default="echoprops" basedir="/home/swg/swg-main" xmlns:if="ant:if" xmlns:unless="ant:unless">
<project name="SWGBuild" default="echoprops" xmlns:if="ant:if" xmlns:unless="ant:unless">
<import file="git_targets.xml" />
<description>
This build file will build all aspects of the SWG Source Code. Created by Cekis (cekisswg@gmail.com).