瀏覽代碼

Taskfile: drop-test-db (#7623)

[skip ci]
Joe Chen 1 年之前
父節點
當前提交
41d473e999
共有 1 個文件被更改,包括 9 次插入0 次删除
  1. 9 0
      Taskfile.yml

+ 9 - 0
Taskfile.yml

@@ -90,3 +90,12 @@ tasks:
     desc: Identify legacy and deprecated lines
     cmds:
       - grep -rnw "\(LEGACY\|Deprecated\)" internal
+
+  drop-test-db:
+    desc: Drop the test database
+    cmds:
+      - |
+        for dbname in $(psql -Xc "copy (select datname from pg_database where datname like 'gogs-%') to stdout"); do
+          dropdb "$dbname"
+          echo "dropped $dbname"
+        done