mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 16:52:25 +00:00
Fix equality test in sourcechanges.pl
This commit is contained in:
parent
92e2c51806
commit
89e2616c5b
1 changed files with 1 additions and 1 deletions
|
|
@ -25,7 +25,7 @@ for f in $1/*; do
|
|||
rm -f $fn.old $fn.new $fn.diff
|
||||
done
|
||||
echo ""
|
||||
if [ $changes == "0" ]; then
|
||||
if [ "$changes" = "0" ]; then
|
||||
echo "--- Generated c source files match bootstrap ---"
|
||||
else
|
||||
echo "--- Generated c source files differ from bootstrap ---"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue