Update configs
This commit is contained in:
parent
9da9b945d9
commit
735040891e
2 changed files with 5 additions and 6 deletions
|
@ -27,15 +27,14 @@ if [[ $url =~ $re ]]; then
|
|||
fi
|
||||
|
||||
project="$user/$repo"
|
||||
pass_paths=()
|
||||
pass_content=$(pass "ansible/$project")
|
||||
|
||||
if ! pass "ansible/$project" >/dev/null 2>&1; then
|
||||
echo "Error: ansible/$project not found in pass" >&2
|
||||
if [ "$?" -ne 0 ]; then
|
||||
echo "Error: failed to load ansible/$project from pass" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
pass_content=$(pass "ansible/$project")
|
||||
pass_paths=()
|
||||
|
||||
grep_filter="^path:"
|
||||
if [ -n "$target" ]; then
|
||||
grep_filter="^path: $target$"
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
dejavu_fonts
|
||||
freefont_ttf
|
||||
liberation_ttf
|
||||
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
|
||||
nerd-fonts.jetbrains-mono
|
||||
noto-fonts
|
||||
roboto
|
||||
twitter-color-emoji
|
||||
|
|
Loading…
Reference in a new issue