diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-10-28 08:45:03 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-10-28 08:45:03 +0200 |
commit | c64d7309b1a055d7c6f0e628b4c31d6c6fd4c193 (patch) | |
tree | 7f2a946672a14910f7f9216468547793d46fd85c | |
parent | a9aad52ac7134edd89869529e7df3b1e6316c10b (diff) |
Fix bug introduced in previous commit
-rw-r--r-- | bdep/database.cxx | 2 |
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"); |