16 lines
514 B
Groovy
16 lines
514 B
Groovy
//=================================================================
|
|
// Byway Studios Inc. Confidential Information.
|
|
// Copyright Byway Studios Inc. All rights reserved
|
|
//=================================================================
|
|
|
|
def call(config)
|
|
{
|
|
echo("clear AB begin")
|
|
//Clean any previously build asset bundles
|
|
bat """
|
|
if exist "${WORKSPACE}\\AB" del /F /S /Q "${WORKSPACE}\\AB\\*"
|
|
"""
|
|
|
|
echo("execUnityMethod begin")
|
|
execUnityMethod_Windows("${config.execUnityMethod}")
|
|
} |