For improved reproducibility.
#!/bin/sh
+export LC_ALL=C.UTF-8
+export LANG=C.UTF-8
+
if [ -n "$1" ]
then
DIR=$1/
fi
-for a in $(find ${DIR}html -type f | grep -v \~)
+for a in $(find ${DIR}html -type f | grep -v \~ | sort)
do
c=$(echo $a | sed s:${DIR}html/:: | tr "/.-" "___")
echo "INCBIN(${c}, \"$a\");"
done
echo "map<string,string> g_urlmap={"
-for a in $(find ${DIR}html -type f | grep -v \~)
+for a in $(find ${DIR}html -type f | grep -v \~ | sort)
do
b=$(echo $a | sed s:${DIR}html/::g)
c=$(echo $b | tr "/.-" "___")
#!/bin/sh
+export LC_ALL=C.UTF-8
+export LANG=C.UTF-8
+
if [ -n "$1" ]
then
DIR=$1/
fi
-for a in $(find ${DIR}html -type f | grep -v \~)
+for a in $(find ${DIR}html -type f | grep -v \~ | sort)
do
c=$(echo $a | sed s:${DIR}html/:: | tr "/.-" "___")
echo "INCBIN(${c}, \"$a\");"
done
echo "map<string,string> g_urlmap={"
-for a in $(find ${DIR}html -type f | grep -v \~)
+for a in $(find ${DIR}html -type f | grep -v \~ | sort)
do
b=$(echo $a | sed s:${DIR}html/::g)
c=$(echo $b | tr "/.-" "___")