This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
DPF
mirror of
https://github.com/DISTRHO/DPF
Watch
1
Star
0
Fork
0
Code
Releases
0
Activity
Browse Source
Allow to override bin-dir for ./utils/generate-ttl.sh
Signed-off-by: falkTX <falktx@falktx.com>
pull/452/head
falkTX
1 year ago
parent
ba985c6578
commit
9f4fcf9dda
Signed by:
falkTX
<falktx@falktx.com>
GPG Key ID:
CDBAA37ABC74FBA0
1 changed files
with
8 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+8
-2
utils/generate-ttl.sh
+ 8
- 2
utils/generate-ttl.sh
View File
@@ -9,7 +9,13 @@ fi
set -e
if [ ! -d bin ]; then
BIN_DIR=${1}
if [ -z "${BIN_DIR}" ]; then
BIN_DIR=bin
fi
if [ ! -d ${BIN_DIR} ]; then
echo "Please run this script from the source root folder"
exit
fi
@@ -28,7 +34,7 @@ else
fi
fi
cd
bin
cd
${BIN_DIR}
FOLDERS=`find . -type d -name \*.lv2`
for i in ${FOLDERS}; do
Write
Preview
Loading…
Cancel
Save