Forum Discussion
Hi @Bhavin,
The pipeline is really helpful and I managed to do a quick check.
However when I used the pipeline to import projects from Github to SL, I can see the assets being appended by extra values like,
Try Snaps-fce2f794-2e8e-48aa-90de-2cb1e762cb81
Instead of
Try Snaps
Do you know any obvious reason for this?
Am I missing any configuration?
/Krupali
Check the file writer somewhere which is appending the string
Try Snaps-fce2f794-2e8e-48aa-90de-2cb1e762cb81
“Try Snaps” must be appended in the beginning in the expression.
If I am guessing, this is the
‘Try Snaps’ + pipe.ruuid
Let us know if you cannot find it.
- krupalibshah9 years agoContributor
Thank you for the reply.
The issue is been solved, the last snap had for each asset had ‘+ “-” + pipe.ruuid’
like below,
_SL_Target_Proj + “/” + $property_map.info.label.value + “-” + pipe.ruuid
I removed that and it works as as expected. Thanks again.