Skip to content
Snippets Groups Projects
Commit 12f681d6 authored by Griefed's avatar Griefed :joystick:
Browse files

fix: Correctly set aliases system-wide

parent b3fc3262
No related branches found
No related tags found
No related merge requests found
...@@ -125,8 +125,10 @@ RUN \ ...@@ -125,8 +125,10 @@ RUN \
/defaults && \ /defaults && \
mv /usr/bin/with-contenv /usr/bin/with-contenvb && \ mv /usr/bin/with-contenv /usr/bin/with-contenvb && \
echo "**** Create our bash-aliases ****" && \ echo "**** Create our bash-aliases ****" && \
alias ll="LC_COLLATE=C ls -ahl --group-directories-first --color=auto" && \ echo 'alias ll="LC_COLLATE=C ls -ahl --group-directories-first --color=auto"' \
alias ..="cd .." && \ >> /etc/bash.bashrc && \
echo 'alias ..="cd .."' \
>> /etc/bash.bashrc && \
echo "**** Cleanup ****" && \ echo "**** Cleanup ****" && \
apt-get autoremove -y && \ apt-get autoremove -y && \
apt-get autoclean -y && \ apt-get autoclean -y && \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment