mirror of
https://github.com/dnote/dnote
synced 2026-03-14 14:35:50 +01:00
6 lines
109 B
Bash
Executable file
6 lines
109 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Set default DBPath to /data if not specified
|
|
export DBPath=${DBPath:-/data/dnote.db}
|
|
|
|
exec "$@"
|