Skip to content

Commit 71322f7

Browse files
authored
Fix error message for missing file in install.sh
1 parent 3520326 commit 71322f7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ rename() {
1313
fi
1414
filename=$(ls $2 2>/dev/null)
1515
if [ -z "$filename" ]; then
16-
echo "❌ No file matching $3 found."
16+
echo "❌ No file matching $2 found."
1717
exit 1
1818
fi
1919
if [ "$3" ]; then

0 commit comments

Comments
 (0)