Changeset: 641eeaca80c6 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=641eeaca80c6
Added Files:
        .vscode/run_clean.sh
Modified Files:
        .vscode/tasks.json
Branch: configurable_working_set
Log Message:

Implemented 'run clean' task.


diffs (47 lines):

diff --git a/.vscode/run_clean.sh b/.vscode/run_clean.sh
new file mode 100644
--- /dev/null
+++ b/.vscode/run_clean.sh
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+FULL_PATH_TO_SCRIPT=`dirname ${0}`
+
+cd `cygpath ${FULL_PATH_TO_SCRIPT}` && cd ..
+
+
+# Empty the build directory. 
+rm -rf build/*
+
+# Remove all generated files outside of the build directory
+find . -path "NT/rules.msc" -prune -regex 
".*\.am$\|.*\.msc$\|.*\.lst$\|.*\.orig$\|.*cheader\.text\.h" -exec rm \{\} +
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -20,7 +20,6 @@
             },
             "presentation": {
                 "panel": "new"
-
             },
             "problemMatcher": {
                 "base": "$gcc",
@@ -68,7 +67,17 @@
             "command": "echo TODO",
             "windows": {
                 "command": "${workspaceFolder}\\.vscode\\run_server.bat"
-            }
+            },
+            "problemMatcher": []
+        },
+        {
+            "label": "run clean",
+            "type": "shell",
+            "command": "echo TODO",
+            "windows": {
+                "command": "bash.exe --login 
${workspaceFolder}\\.vscode\\run_clean.sh"
+            },
+            "problemMatcher": []
         }
     ]
 }
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to