update_workspaces: auto update all ev3 folders

And in doing so, add empty folders for the new projects to be added to.
This commit is contained in:
Laurens Valk
2020-03-03 12:06:16 +01:00
parent a3025707a7
commit af9cb706b2
5 changed files with 32 additions and 1 deletions
@@ -0,0 +1,10 @@
{
"folders": [
{
"path": "robot_arm"
}
],
"settings": {
"debug.openDebug": "neverOpen"
}
}
@@ -0,0 +1,6 @@
{
"folders": [],
"settings": {
"debug.openDebug": "neverOpen"
}
}
@@ -0,0 +1,6 @@
{
"folders": [],
"settings": {
"debug.openDebug": "neverOpen"
}
}
@@ -0,0 +1,6 @@
{
"folders": [],
"settings": {
"debug.openDebug": "neverOpen"
}
}
+4 -1
View File
@@ -33,7 +33,10 @@ def make_workspace(root):
# Make all the workspaces
roots = (
path.join('snippets', 'ev3'),
path.join('official_models', 'ev3'),
path.join('official_models', 'ev3', 'education_core'),
path.join('official_models', 'ev3', 'education_expansion'),
path.join('official_models', 'ev3', 'home'),
path.join('official_models', 'ev3', 'home_bonus'),
)
for root in roots: