mirror of
https://github.com/clangen/musikcube.git
synced 2024-11-19 20:13:36 +00:00
836120f029
properly.
12 lines
313 B
Bash
Executable File
12 lines
313 B
Bash
Executable File
#!/bin/sh
|
|
DIR=$1
|
|
if [ -z "$DIR" ]; then
|
|
echo "[strip] directory not specified, using current working directory"
|
|
DIR=`pwd`
|
|
fi
|
|
echo "[strip] resolved directory: ${DIR}"
|
|
strip "$DIR/bin/musikcube"
|
|
strip "$DIR/bin/musikcubed"
|
|
find "$DIR/bin/" -name "*.so" -exec strip "{}" \; 2> /dev/null
|
|
echo "[strip] finished"
|