Update to compose file, fixed line endings issue

This commit is contained in:
Aaron Hance 2021-06-20 21:05:25 +01:00
parent bd9fbd2da6
commit 29f9a7396a
4 changed files with 2 additions and 63 deletions

2
.gitignore vendored
View File

@ -9,3 +9,5 @@
/*.md5 /*.md5
/*.sh~ /*.sh~
/*.img /*.img
.vscode/launch.json
.vscode

20
.vscode/launch.json vendored
View File

@ -1,20 +0,0 @@
{
"configurations": [
{
"name":"Run",
"request": "launch",
"type": "coreclr",
"preLaunchTask": "Build",
"program": "VBoxSDL",
"args": [
"--comment",
"Asuro",
"--startvm",
"7d395c96-891c-4139-b77d-9b6b144b0b93"
],
"cwd": "${workspaceFolder}",
"console": "internalConsole",
"internalConsoleOptions": "neverOpen"
}
]
}

31
.vscode/tasks.json vendored
View File

@ -1,31 +0,0 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"command": "docker-compose",
"args": [
"run",
"builder"
],
"type": "shell",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build (Builder)",
"command": "docker-compose",
"args": [
"build",
"builder"
],
"type": "shell"
}
]
}

View File

@ -1,12 +0,0 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"type": "gdb",
"request": "launch",
"target": "./bin/executable",
"cwd": "${workspaceRoot}"
}
]
}