diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2010-11-05 09:07:47 -0700 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2010-11-05 09:07:47 -0700 |
commit | 2fafd6ebc174dc5b207492941aca4fee38ac1ef3 (patch) | |
tree | cb9c093a35283815d1709095337755ff22ee6978 | |
parent | 0abb648c0c64093f44849c6fea6023686dc485f4 (diff) |
I don't have tr in the bootstrap so firmware.sh isn't working.
-rwxr-xr-x | Library/firmware.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/firmware.sh b/Library/firmware.sh index 572eab1..0cf9c1d 100755 --- a/Library/firmware.sh +++ b/Library/firmware.sh @@ -23,7 +23,7 @@ model=$(sysctl -n "${model}") status=${data}/status function lower() { - tr '[:upper:]' '[:lower:]' + sed -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/' } # Generate New Package {{{ |