feat(lockfile): allow changing the lockfile path

This commit is contained in:
Boris Bera
2024-07-02 21:12:26 -04:00
parent 62a81d1420
commit f6aa45fd6c
4 changed files with 56 additions and 12 deletions

View File

@@ -1,9 +1,10 @@
package flags
var (
CI bool = false
VERBOSE bool = false
CRON_LEAN bool = false
RESTIC_BIN string
DOCKER_IMAGE string
CI bool = false
VERBOSE bool = false
CRON_LEAN bool = false
RESTIC_BIN string
DOCKER_IMAGE string
LOCKFILE_PATH string
)