61e3ec408b
Add fc-cache script to invoke both version of fc-cache if available.
5 lines
122 B
Bash
Executable File
5 lines
122 B
Bash
Executable File
#! /bin/sh
|
|
|
|
[ -x /usr/bin/fc-cache-32 ] && /usr/bin/fc-cache-32 $@
|
|
[ -x /usr/bin/fc-cache-64 ] && /usr/bin/fc-cache-64 $@
|