mirror of
https://github.com/YunoHost-Apps/jitsi_ynh.git
synced 2024-09-03 19:35:57 +02:00
Update install
This commit is contained in:
parent
c6a5d5b589
commit
3a80dd4ded
1 changed files with 3 additions and 3 deletions
|
@ -129,7 +129,7 @@ ynh_script_progression --message="Setting up source files..."
|
|||
if [ $(uname -m) == "armv7l" ]
|
||||
then
|
||||
# prepare openjdk8 installation
|
||||
if ! -d "/tmp/jitsi-install/"
|
||||
if [ ! -d "/tmp/jitsi-install/" ]
|
||||
then
|
||||
mkdir /tmp/jitsi-install/
|
||||
fi
|
||||
|
@ -160,13 +160,13 @@ then
|
|||
git clone https://github.com/sctplab/usrsctp.git
|
||||
git clone https://github.com/jitsi/jitsi-sctp
|
||||
|
||||
if ! -d "/tmp/jitsi-install/jitsi-sctp/usrsctp/"
|
||||
if [ ! -d "/tmp/jitsi-install/jitsi-sctp/usrsctp/" ]
|
||||
then
|
||||
mv ./usrsctp ./jitsi-sctp/usrsctp/
|
||||
fi
|
||||
cd ./jitsi-sctp
|
||||
# needed to make compile works
|
||||
if ! -d "/tmp/jitsi-install/jitsi-sctp/jniwrapper/native/src/main/resources/lib/linux-arm/"
|
||||
if [ ! -d "/tmp/jitsi-install/jitsi-sctp/jniwrapper/native/src/main/resources/lib/linux-arm/" ]
|
||||
then
|
||||
mkdir -p ./jniwrapper/native/src/main/resources/lib/linux-arm/
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue