diff options
| author | Fuwn <[email protected]> | 2021-06-09 12:25:27 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-06-09 12:25:27 +0000 |
| commit | 6c516b132bd58c11a2380a28b2db2b2e6b81bc52 (patch) | |
| tree | 0bc4b9bd6f0dac69ae84365f0013cdd343b84712 /shell.nix | |
| parent | refactor(config): rename `Whirl.toml` to `Config.toml` (diff) | |
| download | whirl-6c516b132bd58c11a2380a28b2db2b2e6b81bc52.tar.xz whirl-6c516b132bd58c11a2380a28b2db2b2e6b81bc52.zip | |
refactor(database): rename database file
The file name `whirl.sqlite3` is redundant as the file is already in the `.whirl` directory.
BREAKING CHANGE: Database file renamed
Diffstat (limited to 'shell.nix')
| -rw-r--r-- | shell.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ in pkgs.mkShell { niv ]; - DATABASE_URL = ".whirl/whirl.sqlite3"; + DATABASE_URL = ".whirl/db.sqlite3"; RUST_SRC_PATH = "${pkgs.latest.rustChannels.nightly.rust-src}/lib/rustlib/src/rust/library"; RUST_BACKTRACE = "1"; } |