Skip to content

Commit 8fe529c

Browse files
author
risca
committed
typo error: the default parameter of line 31 (src_file) should be a string, not a variable!
1 parent 3ae5c4d commit 8fe529c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

piratebox/piratebox/bin/distribute_files.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ destination=$1
2828
overwrite=$2
2929
overwrite=${overwrite:=false}
3030
src_file=$3
31-
src_file=${src_file:=all}
31+
src_file=${src_file:="all"}
3232

3333
$DEBUG && echo "parameters:
3434
destination $destination

0 commit comments

Comments
 (0)