From b35ba689d0b6a2d2ea8f3c92b4dd27105f501a26 Mon Sep 17 00:00:00 2001 From: Roman Kupriyanov Date: Sat, 17 Jul 2021 01:24:05 +0300 Subject: [PATCH] install: fix addon dir path --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index f86a43a..ec7b11e 100644 --- a/scripts/install +++ b/scripts/install @@ -86,7 +86,7 @@ cp -f "$final_path/.htaccess-dist" "$final_path/.htaccess" # 2 - Clone addons repo git clone https://github.com/friendica/friendica-addons.git -b stable "$final_path/addon" # Reset addons branch to the level of update we needed -pushd "$final_path" +pushd "$final_path/addon" git reset --hard $addons_version_commit popd