1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/vikunja_ynh.git synced 2024-09-03 18:06:26 +02:00

Update install

Fix directory for executable
This commit is contained in:
CodeShakingSheep 2024-07-29 14:30:10 -05:00 committed by GitHub
parent 2d95cddf0f
commit f6315632b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -49,7 +49,7 @@ ynh_script_progression --message="Setting up source files..." --weight=1
# Download, check integrity, uncompress and patch the source from app.src # Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir" ynh_setup_source --dest_dir="$install_dir"
executable="$(find $install_dir -name "vikunja-*" \! -name "*.sha256")" executable="$(find $install_dir -name "vikunja-*" \! -name "*.sha256")"
mv "$executable" "vikunja" mv "$executable" "$install_dir/vikunja"
chmod +x "$install_dir/vikunja" chmod +x "$install_dir/vikunja"