diff options
author | Julio Capote <jcapote@gmail.com> | 2022-08-21 13:12:16 +0000 |
---|---|---|
committer | Julio Capote <jcapote@gmail.com> | 2022-08-21 13:12:16 +0000 |
commit | fa6770898e323a5ea0b8ff98d3f7a8e319b87aec (patch) | |
tree | f7f5a73bda537129dd65f40aa90da77252b2629f /libexec | |
parent | b711384b092fd4a2b93b4b4ef1cb0d0ab7b09ed8 (diff) | |
download | recit-fa6770898e323a5ea0b8ff98d3f7a8e319b87aec.tar.gz |
use template file from share
Diffstat (limited to 'libexec')
-rwxr-xr-x | libexec/recit-setup | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/recit-setup b/libexec/recit-setup index d3da34c..fb8ce61 100755 --- a/libexec/recit-setup +++ b/libexec/recit-setup @@ -1,6 +1,6 @@ #!/usr/bin/env bash -source lib/recfile_template +set -e if [[ -f "$HOME/.recit.location" ]]; then recfile_location=$(cat "$HOME/.recit.location") @@ -8,5 +8,5 @@ if [[ -f "$HOME/.recit.location" ]]; then exit 1 fi -recfile_template > "$HOME/.recit.db" -echo "$HOME/.recit.db" > "$HOME/.recit.location" +cat share/recit/recit.example.rec > "$HOME/.recit.rec" +echo "$HOME/.recit.rec" > "$HOME/.recit.location" |