diff options
author | Mura Li <typeless@users.noreply.github.com> | 2018-10-23 19:47:59 +0800 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2018-10-23 19:47:59 +0800 |
commit | 25c49cf930cb0add769c5596a7317ada1c5f9da7 (patch) | |
tree | aa416e3bf7644875738945935fbceb5b50fe0510 /contrib/ide | |
parent | 2ce72d4e00cc7d2dbf3c445eb18c252c73f605e3 (diff) | |
download | gitea-25c49cf930cb0add769c5596a7317ada1c5f9da7.tar.gz gitea-25c49cf930cb0add769c5596a7317ada1c5f9da7.zip |
Update build tags for sqlite_unlock_notify (#5144)
Diffstat (limited to 'contrib/ide')
-rw-r--r-- | contrib/ide/vscode/launch.json | 2 | ||||
-rw-r--r-- | contrib/ide/vscode/tasks.json | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/ide/vscode/launch.json b/contrib/ide/vscode/launch.json index af1594cd5d..6e90aa0eaa 100644 --- a/contrib/ide/vscode/launch.json +++ b/contrib/ide/vscode/launch.json @@ -19,7 +19,7 @@ "type": "go", "request": "launch", "mode": "debug", - "buildFlags": "-tags=\"sqlite\"", + "buildFlags": "-tags=\"sqlite sqlite_unlock_notify\"", "port": 2345, "host": "127.0.0.1", "program": "${workspaceRoot}/main.go", diff --git a/contrib/ide/vscode/tasks.json b/contrib/ide/vscode/tasks.json index 8527d91c8f..ac42806d67 100644 --- a/contrib/ide/vscode/tasks.json +++ b/contrib/ide/vscode/tasks.json @@ -35,7 +35,7 @@ "focus": false, "panel": "shared" }, - "args": ["build", "-tags=\"sqlite\""], + "args": ["build", "-tags=\"sqlite sqlite_unlock_notify\""], "linux": { "args": ["-o", "gitea", "${workspaceRoot}/main.go"] }, |