mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-12-22 07:27:39 +00:00
Shellcheck fixes
This commit is contained in:
parent
a9937c3f33
commit
c57822263e
@ -276,9 +276,9 @@ link () {
|
|||||||
local target="$2"
|
local target="$2"
|
||||||
|
|
||||||
if [ -f "$src" ]; then
|
if [ -f "$src" ]; then
|
||||||
src="$src"
|
true
|
||||||
elif [ -d "$src" ]; then
|
elif [ -d "$src" ]; then
|
||||||
src="$src"
|
true
|
||||||
elif [ -f "$cookbook_assets_source" ]; then
|
elif [ -f "$cookbook_assets_source" ]; then
|
||||||
src="$cookbook_assets_source"
|
src="$cookbook_assets_source"
|
||||||
elif [ -f "$default_assets_source" ]; then
|
elif [ -f "$default_assets_source" ]; then
|
||||||
@ -304,9 +304,9 @@ try_link () {
|
|||||||
local target="$2"
|
local target="$2"
|
||||||
|
|
||||||
if [ -f "$src" ]; then
|
if [ -f "$src" ]; then
|
||||||
src="$src"
|
true
|
||||||
elif [ -d "$src" ]; then
|
elif [ -d "$src" ]; then
|
||||||
src="$src"
|
true
|
||||||
elif [ -f "$cookbook_assets_source" ]; then
|
elif [ -f "$cookbook_assets_source" ]; then
|
||||||
src="$cookbook_assets_source"
|
src="$cookbook_assets_source"
|
||||||
elif [ -f "$default_assets_source" ]; then
|
elif [ -f "$default_assets_source" ]; then
|
||||||
@ -355,7 +355,7 @@ add_user () {
|
|||||||
generate_password() {
|
generate_password() {
|
||||||
local l=$1
|
local l=$1
|
||||||
[ "$l" == "" ] && l=8
|
[ "$l" == "" ] && l=8
|
||||||
tr -dc A-Za-z0-9_ < /dev/urandom | head -c ${l} | xargs
|
tr -dc A-Za-z0-9_ < /dev/urandom | head -c "${l}" | xargs
|
||||||
}
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user