8 lines
285 B
Plaintext
8 lines
285 B
Plaintext
|
#!/bin/bash
|
||
|
PATH_BUILD=$1
|
||
|
PATH_DEB=$2
|
||
|
GIT_VERSION=$3
|
||
|
|
||
|
tar -zxf ${PATH_BUILD}/tmp/element-web/dist/element-${GIT_VERSION}-dirty.tar.gz --strip-components=1 -C ${PATH_DEB}/usr/lib/element-web/
|
||
|
cp ${PATH_DEB}/usr/lib/element-web/config.sample.json ${PATH_DEB}/etc/element-web/config.json
|