diff options
Diffstat (limited to 'tools/buildsteps/linux64/make-binary-addons')
-rwxr-xr-x | tools/buildsteps/linux64/make-binary-addons | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/buildsteps/linux64/make-binary-addons b/tools/buildsteps/linux64/make-binary-addons index beda7297f0..5c58675ee7 100755 --- a/tools/buildsteps/linux64/make-binary-addons +++ b/tools/buildsteps/linux64/make-binary-addons @@ -5,7 +5,7 @@ XBMC_PLATFORM_DIR=linux64 . $WORKSPACE/tools/buildsteps/$XBMC_PLATFORM_DIR/make-native-depends #clear the build failed file -rm -f $WORKSPACE/project/cmake/$FAILED_BUILD_FILENAME +rm -f $WORKSPACE/cmake/$FAILED_BUILD_FILENAME ALL_BINARY_ADDONS_BUILT="1" #only build binary addons when requested by env/jenkins @@ -21,8 +21,8 @@ fi if [ "$ALL_BINARY_ADDONS_BUILT" == "1" ] then - tagSuccessFulBuild $WORKSPACE/project/cmake + tagSuccessFulBuild $WORKSPACE/cmake else #mark the build failure in the filesystem but leave jenkins running - tagFailedBuild $WORKSPACE/project/cmake + tagFailedBuild $WORKSPACE/cmake fi |