Files
furumi/.vscode/tasks.json

14 lines
356 B
JSON
Raw Normal View History

2020-06-03 18:44:25 +03:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Umount FUSE",
"type": "shell",
"command": "fusermount -u mnt",
"group": "build",
"problemMatcher": []
}
]
}