Anyone of you encountered a weird behavior in Suit...
# sdf
a
Anyone of you encountered a weird behavior in SuiteCloud IDE(2020.2.0) for WebStorm(2020.2.3), I've already updated the deploy.xml to only deploy specific objects, but when I deploy it, the behavior is that it is as if I never updated the deploy.xml file. I have to redeploy again for it to use the updated deploy.xml. Here's a rundown of how I encountered the bug
<deploy>
<files>
<path>~/FileCabinet/SuiteScripts/someJsFile_1.js</path>
</files>
<objects>
<path>~/Objects/customscript_somejsfile_1.xml</path
</objects>
</deploy>
Deploy to Account Result: successfully deploys I then update the file:
<deploy>
<files>
<path>~/FileCabinet/SuiteScripts/someJsFile_1.js</path>
<path>~/FileCabinet/SuiteScripts/someJsFile_2.js</path>
</files>
<objects>
<path>~/Objects/customscript_somejsfile_1.xml</path
<path>~/Objects/customscript_somejsfile_2.xml</path
</objects>
</deploy>
Deploy to Account Result: it only deployed
someJsFile_1.js
and
customscript_somejsfile_1.xml
I have to do the Deploy to Account so that it recognizes and deploys the
someJsFile_2.js
and
customscript_somejsfile_2.xml
a
So correct me if i misunderstood. When you
deploy
you are saying that changes are not picked up. When you
deploy to account
then changes are picked up? Can you check logs, the first line says which authid/account was the project deployed to. Check if deploy is using the same account as deploy to account. It might be that your default account is set to a different one that you are expecting.
a
What I mean by
deploy
is
deploy to account
using the SuiteCloud IDE, sorry for the confusion. It's using the correct account and credentials. It's just that whenever I change the deploy.xml I have to use the
deploy to account
twice because it seems that the plugin is not recognizing the changes on the first try