This is an automated email from the ASF dual-hosted git repository.
msciabarra pushed a commit to branch partial-deploy
in repository https://gitbox.apache.org/repos/asf/openserverless-task.git
The following commit(s) were added to refs/heads/partial-deploy by this push:
new bb44e51 fix cond
bb44e51 is described below
commit bb44e51c8c9cce53d14021d8d17c99cb24e67c61
Author: Michele Sciabarra <[email protected]>
AuthorDate: Sun Nov 9 08:04:25 2025 +0000
fix cond
---
ide/opsfile.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ide/opsfile.yml b/ide/opsfile.yml
index cb4c075..9e9694b 100644
--- a/ide/opsfile.yml
+++ b/ide/opsfile.yml
@@ -249,11 +249,11 @@ tasks:
then
bun {{.TASKFILE_DIR}}/deploy/index.js "$OPS_PWD" -s
"{{._action_}}" $DRY
else
- if [ -n "$deploy_packages"]
+ if [ -n "$deploy_packages" ]
then
bun {{.TASKFILE_DIR}}/deploy/index.js "$OPS_PWD" -d $DRY
fi
- if [-n "$deploy_web"]
+ if [ -n "$deploy_web" ]
then
OPS_UPLOAD_FOLDER=`bun {{.TASKFILE_DIR}}/deploy/info.js upload
web`
echo "UPLOAD ASSETS FROM ${OPS_UPLOAD_FOLDER}"