Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Development_Environment
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Montaño Sarria, Andres Felipe
Development_Environment
Commits
71016aa3
Commit
71016aa3
authored
2 years ago
by
Montaño Sarria, Andres Felipe
Browse files
Options
Downloads
Patches
Plain Diff
Fix issues with docker and sources
parent
10f22ec2
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
dockerfiles/DevenvMelodic.Dockerfile
+4
-3
4 additions, 3 deletions
dockerfiles/DevenvMelodic.Dockerfile
dotfiles/ros.bash
+9
-8
9 additions, 8 deletions
dotfiles/ros.bash
dotfiles/system.bash
+17
-8
17 additions, 8 deletions
dotfiles/system.bash
with
30 additions
and
19 deletions
dockerfiles/DevenvMelodic.Dockerfile
+
4
−
3
View file @
71016aa3
...
@@ -206,6 +206,7 @@ RUN chmod a+x /ros_entrypoint.sh
...
@@ -206,6 +206,7 @@ RUN chmod a+x /ros_entrypoint.sh
ENTRYPOINT
["/ros_entrypoint.sh"]
ENTRYPOINT
["/ros_entrypoint.sh"]
CMD
["zsh"]
CMD
["zsh"]
ENV
SHELL /usr/bin/zsh
# Switch back to dialog for any ad-hoc use of apt-get
# Switch back to dialog for any ad-hoc use of apt-get
ENV
DEBIAN_FRONTEND=
ENV
DEBIAN_FRONTEND=
This diff is collapsed.
Click to expand it.
dotfiles/ros.bash
+
9
−
8
View file @
71016aa3
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
# ROS
# ROS
###################################################################
###################################################################
export
ROS_DISTRO
=
noetic
if
[
-z
$ROS_DISTRO
]
;
then
export
ROS_DISTRO
=
noetic
;
fi
ext
=
$(
basename
${
SHELL
}
)
if
[
-z
$SHELL
]
;
then
echo
"SHELL not set"
;
else
ext
=
$(
basename
${
SHELL
}
)
;
fi
# Source rosmon
# Source rosmon
function
smon
(){
function
smon
(){
...
@@ -39,6 +39,7 @@ FILE=${WS_path}/devel/setup.${ext}
...
@@ -39,6 +39,7 @@ FILE=${WS_path}/devel/setup.${ext}
if
[[
-f
$FILE
]]
;
then
if
[[
-f
$FILE
]]
;
then
cd
${
WS_path
}
cd
${
WS_path
}
source
$FILE
source
$FILE
smon
cd
${
pwd_bck
}
cd
${
pwd_bck
}
else
source
/opt/ros/
${
ROS_DISTRO
}
/setup.
${
ext
}
fi
fi
This diff is collapsed.
Click to expand it.
dotfiles/system.bash
+
17
−
8
View file @
71016aa3
if
command
-v
lsd &> /dev/null
then
# Directories
# Directories
alias
ll
=
'lsd -lh --group-dirs=first'
alias
ll
=
'lsd -lh --group-dirs=first'
alias
la
=
'lsd -a --group-dirs=first'
alias
la
=
'lsd -a --group-dirs=first'
alias
l
=
'lsd --group-dirs=first'
alias
l
=
'lsd --group-dirs=first'
alias
lla
=
'lsd -lha --group-dirs=first'
alias
lla
=
'lsd -lha --group-dirs=first'
alias ls
=
'lsd --group-dirs=first'
alias ls
=
'lsd --group-dirs=first'
fi
if
command
-v
bat &> /dev/null
then
# Files
# Files
alias cat
=
'bat'
alias cat
=
'bat'
fi
# Python
# Python
alias
ipy
=
'ipython'
alias
ipy
=
'ipython'
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment