aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2022-10-28 08:45:03 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2022-10-28 08:45:03 +0200
commitc64d7309b1a055d7c6f0e628b4c31d6c6fd4c193 (patch)
tree7f2a946672a14910f7f9216468547793d46fd85c
parenta9aad52ac7134edd89869529e7df3b1e6316c10b (diff)
Fix bug introduced in previous commit
-rw-r--r--bdep/database.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/bdep/database.cxx b/bdep/database.cxx
index e41b349..202e1d7 100644
--- a/bdep/database.cxx
+++ b/bdep/database.cxx
@@ -110,7 +110,7 @@ namespace bdep
set_nocase ("relative_path");
db.execute ("UPDATE sqlite_master"
- " SET sql = '" + t.sql + '\''
+ " SET sql = '" + t.sql + "'"
" WHERE " + where);
db.execute ("PRAGMA writable_schema = OFF");