mirror of
https://github.com/clangen/musikcube.git
synced 2024-11-19 20:13:36 +00:00
dff533d1a7
(but musikcubed is fine??)
12 lines
302 B
Bash
Executable File
12 lines
302 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/*" 2> /dev/null
|
|
strip "$DIR/bin/lib/*" 2> /dev/null
|
|
strip "$DIR/bin/plugin/*" 2> /dev/null
|
|
echo "[strip] finished"
|