mirror of
https://github.com/YunoHost-Apps/friendica_ynh.git
synced 2024-09-03 18:36:14 +02:00
install: cd git repo before resetting
This commit is contained in:
parent
18957fb8d4
commit
10033af6a8
1 changed files with 6 additions and 2 deletions
|
@ -76,7 +76,9 @@ ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
|||
# 1 - Clone stable repo
|
||||
git clone https://github.com/friendica/friendica.git -b stable "$final_path"
|
||||
# Reset branch to the level of update we needed
|
||||
git reset --hard $version_commit
|
||||
pushd "$final_path"
|
||||
git reset --hard $version_commit
|
||||
popd
|
||||
|
||||
# Copy .htaccess-dist to ..htaccess
|
||||
cp -f "$final_path/.htaccess-dist" "$final_path/.htaccess"
|
||||
|
@ -84,7 +86,9 @@ 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
|
||||
git reset --hard $addons_version_commit
|
||||
pushd "$final_path"
|
||||
git reset --hard $addons_version_commit
|
||||
popd
|
||||
|
||||
#=================================================
|
||||
# NGINX CONFIGURATION
|
||||
|
|
Loading…
Reference in a new issue