13 lines
208 B
Bash
Executable File
13 lines
208 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
if [ -e "$DIR/../base/usr/share/fonts" ]; then
|
|
echo 20000
|
|
elif [ -e "$DIR/../base/usr/python" ]; then
|
|
echo 11000
|
|
else
|
|
echo 4096
|
|
fi
|
|
|