my dotz
0

Configure Feed

Select the types of activity you want to include in your feed.

fix pw_add logic

+2 -2
+2 -2
bin/pa
··· 44 44 # however this is typically done using 'mkstemp()' which 45 45 # is more secure than a leak in '/proc'. 46 46 age -r "$pubkey" -o "$name.age" <<-EOF && 47 - $pass 47 + $pass 48 48 EOF 49 49 printf '%s\n' "Saved '$name' to the store." 50 50 } ··· 71 71 age -i ~/.age/key.txt --decrypt "$1.age" > "$tmpfile" 72 72 "${EDITOR:-vi}" "$tmpfile" 73 73 74 - if [ ! -f $tmpfile ]; then 74 + if [ ! -f "$tmpfile" ]; then 75 75 die "New password not saved" 76 76 fi 77 77