indents
This commit is contained in:
parent
7a9ed2ee10
commit
bc7498fba2
1 changed files with 5 additions and 5 deletions
10
pidd.sh
10
pidd.sh
|
@ -717,8 +717,8 @@ pidd_ln_python() {
|
|||
pidd_ln_python__command="${1}"
|
||||
if [ -n "${pidd_ln_python__command}" ]; then
|
||||
echo "→ ${PIDD_PYTHON_ALIAS} → ${pidd_ln_python__command}"
|
||||
ln -f -s "${pidd_ln_python__command}" "/usr/bin/${PIDD_PYTHON_ALIAS}" \
|
||||
|| exit
|
||||
ln -f -s "${pidd_ln_python__command}" "/usr/bin/${PIDD_PYTHON_ALIAS}" ||
|
||||
exit
|
||||
fi
|
||||
}
|
||||
|
||||
|
@ -747,9 +747,9 @@ pidd_openssl() {
|
|||
pidd_openssl__file="${1}"
|
||||
if [ -f "${pidd_openssl__file}" ]; then
|
||||
openssl x509 \
|
||||
-in "${pidd_openssl__file}" \
|
||||
-noout -text \
|
||||
|| exit
|
||||
-in "${pidd_openssl__file}" \
|
||||
-noout -text ||
|
||||
exit
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue