2020-07-05 19:13:50 +02:00
|
|
|
#!/bin/bash
|
|
|
|
# some stuff we don't care about really.
|
|
|
|
# clone ynh_experimental helpers
|
|
|
|
pushd $final_path
|
|
|
|
if [ -x Experimental_helpers ]; then
|
|
|
|
pushd Experimental_helpers
|
2022-05-08 15:09:55 +02:00
|
|
|
ynh_exec_warn_less git fetch
|
2020-07-05 19:13:50 +02:00
|
|
|
popd
|
|
|
|
else
|
2022-05-08 15:09:55 +02:00
|
|
|
ynh_exec_warn_less git clone https://github.com/YunoHost-Apps/Experimental_helpers.git
|
2020-07-05 19:13:50 +02:00
|
|
|
fi
|
|
|
|
pushd Experimental_helpers
|
2022-05-10 10:43:05 +02:00
|
|
|
ynh_exec_warn_less git checkout d05b4db
|
2020-07-05 19:13:50 +02:00
|
|
|
source ./ynh_install_ruby/ynh_install_ruby
|
|
|
|
popd
|
|
|
|
popd
|
2022-05-08 15:09:55 +02:00
|
|
|
ynh_exec_warn_less ynh_install_ruby --ruby_version=2.6.6
|
2020-07-05 19:13:50 +02:00
|
|
|
|