From c8b68792a47574fc3246b52d70d404640a1c2028 Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Sat, 30 Dec 2023 05:14:31 +0100 Subject: [PATCH] add a note about the fact we can't use resources.sources instead of git --- scripts/install | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/install b/scripts/install index 8bce5b3..ec40918 100644 --- a/scripts/install +++ b/scripts/install @@ -50,6 +50,9 @@ chown -R "$app:www-data" "$install_dir" git config --system --add safe.directory "$install_dir" # Download, check integrity, uncompress and patch the source from GitHub +# note: we can't use resources.sources instead of git because Invidious is +# expecting to be in a git environment for the building step... +# see: https://github.com/YunoHost-Apps/invidious_ynh/pull/127 git clone https://github.com/iv-org/invidious "$install_dir" --quiet pushd "$install_dir"