Rename joplin and joplin desktop

main
Alfredo Palhares 2018-04-19 15:02:54 +01:00
parent cf2b9621de
commit 75c22bfacb
4 changed files with 7 additions and 7 deletions

View File

@ -13,8 +13,8 @@ pkgbase = joplin
provides = joplin
provides = joplin-cli
source = joplin.desktop
source = joplin-desktop.sh
source = joplin.sh
source = joplin-cli.sh
source = https://github.com/laurent22/joplin/archive/v1.0.83.zip
sha256sums = 87908c016952deebde4c1a1008ae76659b5942770da7d281c211841fc8c036b7
sha256sums = 5a3ace64906080adde5a5ea10ec9221fb2d94de770e6ee35b454aa30608b4097

View File

@ -13,7 +13,7 @@ depends=("nodejs")
provides=("joplin" "joplin-cli")
url="https://joplin.cozic.net"
license=("MIT")
source=("${pkgname}.desktop" "joplin.sh" "joplin-cli.sh"
source=("${pkgname}.desktop" "joplin-desktop.sh" "joplin.sh"
"https://github.com/laurent22/joplin/archive/v1.0.83.zip")
sha256sums=("87908c016952deebde4c1a1008ae76659b5942770da7d281c211841fc8c036b7"
"5a3ace64906080adde5a5ea10ec9221fb2d94de770e6ee35b454aa30608b4097"

View File

@ -1,6 +1,6 @@
#!/bin/bash
readonly joplin_dir="/usr/share/joplin-cli/"
readonly joplin_dir="/usr/share/joplin/"
if [[ ! -d $joplin_dir ]]; then
echo "Did not found joplin data directory"
@ -9,4 +9,5 @@ fi
cd $joplin_dir
node main.js ${@}
./joplin "$@"

View File

@ -1,6 +1,6 @@
#!/bin/bash
readonly joplin_dir="/usr/share/joplin/"
readonly joplin_dir="/usr/share/joplin-cli/"
if [[ ! -d $joplin_dir ]]; then
echo "Did not found joplin data directory"
@ -9,5 +9,4 @@ fi
cd $joplin_dir
./joplin "$@"
node main.js ${@}