diff options
author | terminaldweller <thabogre@gmail.com> | 2023-03-11 07:08:02 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2023-03-11 07:08:02 +0000 |
commit | dbf9a072d71263c1f9984dba3593fefc0ae0cd85 (patch) | |
tree | 3abd25a0e9710075734a1265d247d598ed79d71b | |
parent | properly escaped the string to pass to detect-secrets (diff) | |
download | lclip-dbf9a072d71263c1f9984dba3593fefc0ae0cd85.tar.gz lclip-dbf9a072d71263c1f9984dba3593fefc0ae0cd85.zip |
fixed the docstring for detect-secrets
-rwxr-xr-x | lclipd.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -89,9 +89,9 @@ insert into lclipd(content,dateAdded) values('XXX', unixepoch()); ]=] local detect_secrets_cmd = [=[ -detect-secrets scan --string <<- STR +detect-secrets scan --string <<- STR | grep -v False XXX -STR | grep -v False +STR ]=] local tmp_dir = "/tmp/lclipd" |