8 lines
263 B
Plaintext
8 lines
263 B
Plaintext
|
#!/bin/bash
|
||
|
PATH_BUILD=$1
|
||
|
PATH_DEB=$2
|
||
|
GIT_VERSION=$3
|
||
|
|
||
|
wget https://github.com/laurent22/joplin/releases/download/v${GIT_VERSION}/Joplin-${GIT_VERSION}.AppImage -qO ${PATH_DEB}/usr/share/joplin/Joplin.AppImage
|
||
|
chmod +x ${PATH_DEB}/usr/share/joplin/Joplin.AppImage
|