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
Fix for realpath not being available on all systems
pull/287/head
falkTX
4 years ago
parent
74214cbeaa
commit
ebcec634de
1 changed files
with
7 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+7
-0
utils/generate-ttl.sh
+ 7
- 0
utils/generate-ttl.sh
View File
@@ -1,5 +1,12 @@
#!/bin/bash
# function not available on some systems
if ! which realpath 2>/dev/null; then
function realpath() {
[[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"
}
fi
set -e
if [ ! -d bin ]; then
Write
Preview
Loading…
Cancel
Save