-
-
Notifications
You must be signed in to change notification settings - Fork 31
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
For what I can tell, you should not be using several double quotes inside the same echo command to use the VAR
Line 9 in 1e520e0
echo -e "\nFile \"$file\" not proerly sorted!\n\nDiff between current and the correct version:" 1>&2 |
The following line should be doing the same, but with less potential of failures
echo -e "\nFile $file not properly sorted!\n\nDiff between current and the correct version:" 1>&2
PS: you have a typo in proerly
sed s/proerly/properly/
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working