In Webstom when I validate a project I am getting ...
# sdf
n
In Webstom when I validate a project I am getting the SDF error "The system cannot find the path specified". Is there a place where I can see any further detail of where to start looking for this error? The SDF project was created by another dev, uploaded to GitHub and I've imported it from there. It works for him.
a
what's the contents of your suitecloud.config.js?
n
Copy code
module.exports = {
    defaultProjectFolder: "src",
    commands: {}
};
a
and is
src
the root folder?
n
yes, the defaults
a
oh wait, did you set it up as a NetSuite project in webstorm? (suiteapp or account customization) or just clone it from GH and open the folder with webstorm?
n
it's a NS Project
a
so you have all of this on the project nav section?
well maybe not the readme.. but that doesn't matter 🙂
errr and you can ignore objects NOT DEPLOYED too 😄
I'm thinking maybe something that should have been git ignored by the other dev wasn't, and so you've pulled in some of their local paths and so its trying to use them and complaining about them
n
Ok. Thanks. I’ll follow that path
a
there's a hidden
.idea
folder in the project root, it wont show in webstorm, its basically project/webstorm config info, take a look at those and see if any files in there have bogus path references
n
Yes. We have that structure
a
are you validating against an account where this thing has been deployed already?
n
Yes. This project is working in SB. we are just mooing it to Prod which has an earlier version.
a
can you paste the whole output from the suitecloud IDE tab when you try to validate... DM me if you're worried about making stuff public that shouldn't be
n
That’s the issue. As probably posted That’s the only sentence that comes on the SDF console.
a
so it says validating against %ACCOUNT% - Administrator and then cannot find path specifiied?
n
Standby.
a
okay then I'm 99% sure its a local path that's the issue and not a NetSuite File Cabinet path
this is a the start of a good validation output
n
it fails at the Validate" stage with "The system cannot find the path specified" doing Validate Against Account doesn't progress as it fails at this early step
I'll dig around. I was just hoping there was amore detailed log.
a
not that I'm aware of
i'd just take a look at the paths shown in /.idea/workspace.xml and modules.xml and see if anything looks wrong
n
thank you
a
good luck