mirror of
https://github.com/go-gitea/gitea.git
synced 2026-05-19 19:41:08 +00:00
1. remove useless files like "backport.go", "update_dependencies.sh" 2. remove outdated "init" scripts, only keep one in sysvinit, gentoo dir is also kept because it still uses openrc 3. move "service" related config and scripts into "service" directory
28 lines
610 B
JSON
28 lines
610 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build",
|
|
"type": "shell",
|
|
"command": "go",
|
|
"group": "build",
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared"
|
|
},
|
|
"linux": {
|
|
"args": ["build", "-o", "gitea", "${workspaceRoot}/main.go" ]
|
|
},
|
|
"osx": {
|
|
"args": ["build", "-o", "gitea", "${workspaceRoot}/main.go" ]
|
|
},
|
|
"windows": {
|
|
"args": ["build", "-o", "gitea.exe", "\"${workspaceRoot}\\main.go\""]
|
|
},
|
|
"problemMatcher": ["$go"]
|
|
}
|
|
]
|
|
}
|