File tree Expand file tree Collapse file tree 3 files changed +19
-21
lines changed
Expand file tree Collapse file tree 3 files changed +19
-21
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ the University of Manchester.
3535docker run -it murilomarinho/sas:jazzy
3636```
3737
38- ## Installation
38+ ## Ubuntu Installation
3939[ ![ SAS Debian Builder] ( https://github.com/SmartArmStack/smart_arm_stack_ROS2/actions/workflows/sas_debian_builder.yml/badge.svg?branch=jazzy )] ( https://github.com/SmartArmStack/smart_arm_stack_ROS2/actions/workflows/sas_debian_builder.yml )
4040
4141### Pre-requisites
@@ -169,25 +169,6 @@ SAS and ROS2
169169
170170Please refer to https://ros2-tutorial.readthedocs.io/en/latest/sas/index.html .
171171
172- ## Packaging
173-
174- ### LGPL
175-
176- The PPA for the LGPL version is available at https://smartarmstack.github.io/smart_arm_stack_ROS2/ . The archive is available at https://github.com/SmartArmStack/smart_arm_stack_ROS2/releases in case you need to rely on older versions.
177-
178- ### CC BY-NC 4.0
179-
180- The PPA for the CC BY-NC 4.0 version is available at https://marinholab.github.io/sas_debian_builder_noncommercial/ . The archive is currently private.
181-
182- ``` {note}
183- :class: dropdown
184- # Older (and unsupported) versions
185-
186- - https://github.com/SmartArmStack/smart_arm_stack
187- - https://github.com/SmartArmStack/smart_arm_stack_lgpl
188- - https://github.com/SmartArmStack/smart_arm_stack_researchonly
189- ```
190-
191172## Acknowledgements
192173
193174``` {figure} img/computer_capi_open_tech.png
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ project:
2929 - file : submodules/sas_kuka_control_template/sas_kuka_control_template_README.md
3030 - file : submodules/sas_robot_driver_coppeliasim/sas_robot_driver_coppeliasim_README.md
3131 - file : submodules/docker-coppeliasim/docker-coppeliasim_README.md
32+ # - file: submodules/sas_unitree_b1z1_control_template/sas_unitree_b1z1_control_template_README.md
3233 - file : CHANGELOG.md
3334
3435site :
Original file line number Diff line number Diff line change 11#! /bin/bash
22set -e
33# This script should be run in its own folder.
4+ sudo apt-get install tree
45
56clone_and_rename_readme (){
67# $1 must be the repository name
78# $2 must be the branch
9+ # $3 must be the author or empty
810
911FOLDER_NAME=$( basename " $1 " .git)
1012
1113git clone " $1 " -b " $2 " --single-branch --depth=1
1214cd " $FOLDER_NAME "
13- mv README.md " ${FOLDER_NAME} " _README.md
15+
16+ FILE_NAME=" ${FOLDER_NAME} " _README.md
17+ mv README.md " $FILE_NAME "
18+ # Add author info if needed
19+ if [[ $3 ]]; then
20+ sed -i " $( printf " ---\n author: ${3} \n ---" ) " " $FILE_NAME "
21+ fi
22+
1423cd ..
1524}
1625
@@ -24,6 +33,13 @@ clone_and_rename_readme https://github.com/MarinhoLab/sas_ur_control_template.gi
2433clone_and_rename_readme https://github.com/MarinhoLab/sas_kuka_control_template.git main
2534clone_and_rename_readme https://github.com/MarinhoLab/sas_robot_driver_copppeliasim.git main
2635
36+ # Content from other authors (Not working yet, but one can dream)
37+ # JJQO
38+ # clone_and_rename_readme https://github.com/Adorno-Lab/sas_unitree_b1z1_control_template main "Juan Jose Quiroz Omana"
39+
40+ # Print all contents.
41+ tree .
42+
2743cd .. # Get out of submodules
2844cd scripts # Go back to `scripts`
2945
You can’t perform that action at this time.
0 commit comments