Skip to content
Snippets Groups Projects
Commit 73a2798a authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

[fix] Fix release webExt

parent 9b251dcf
No related branches found
No related tags found
No related merge requests found
......@@ -117,10 +117,11 @@ cd ${PROJECT_DIR} || exit 1
# Run web build
gulp config --env default
gulp webBuild webExtBuild --release
if [[ $? -ne 0 ]]; then
exit 1
fi
gulp webBuild --release
[[ $? -ne 0 ]] && exit 1
gulp webExtBuild --release
[[ $? -ne 0 ]] && exit 1
# check files exists
DIST_WEB_FILE="${DIST_WEB}/${PROJECT_NAME}-v$2-web.zip"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment