File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -196,13 +196,6 @@ function run_prepare() {
196
196
fi
197
197
done
198
198
199
- # create build directory if not found
200
- test -d $PACKAGES_PATH || mkdir -p $PACKAGES_PATH
201
- if [ ! -d $BUILD_PATH ]; then
202
- mkdir -p $BUILD_PATH
203
- mkdir -p $LIBS_PATH
204
- fi
205
-
206
199
info " Distribution will be located at $DIST_PATH "
207
200
if [ -e " $DIST_PATH " ]; then
208
201
error " The distribution $DIST_PATH already exist"
@@ -219,6 +212,11 @@ function run_prepare() {
219
212
try rm -rf $SRC_PATH /libs
220
213
fi
221
214
215
+ # create build directory if not found
216
+ test -d $PACKAGES_PATH || mkdir -p $PACKAGES_PATH
217
+ test -d $BUILD_PATH || mkdir -p $BUILD_PATH
218
+ test -d $LIBS_PATH || mkdir -p $LIBS_PATH
219
+
222
220
# create initial files
223
221
echo " target=android-$ANDROIDAPI " > $SRC_PATH /default.properties
224
222
echo " sdk.dir=$ANDROIDSDK " > $SRC_PATH /local.properties
You can’t perform that action at this time.
0 commit comments