From 759fab0ea9002b24f3960691cb993be81a4356d7 Mon Sep 17 00:00:00 2001 From: Martin Blazik Date: Wed, 16 Sep 2020 19:40:16 +0200 Subject: [PATCH] RC scripts doesn't have *.rx mask --- bashrc | 2 +- rc/{aliases.rc => aliases.sh} | 0 rc/{env.rc => env.sh} | 0 rc/{git-prompt.rc => git-prompt.sh} | 0 rc/{psql-env.rc => psql-env.sh} | 0 rc/{tiger.rc => tiger.sh} | 0 6 files changed, 1 insertion(+), 1 deletion(-) rename rc/{aliases.rc => aliases.sh} (100%) rename rc/{env.rc => env.sh} (100%) rename rc/{git-prompt.rc => git-prompt.sh} (100%) rename rc/{psql-env.rc => psql-env.sh} (100%) rename rc/{tiger.rc => tiger.sh} (100%) diff --git a/bashrc b/bashrc index 34fa70c..775dafc 100644 --- a/bashrc +++ b/bashrc @@ -3,7 +3,7 @@ echo "Loading Linux Workspace Project bashrc" WORKSPACE_PATH=$(realpath $BASH_SOURCE) export WORKSPACE=$(dirname $WORKSPACE_PATH) -for rc_file in $WORKSPACE/rc/*.rc; do +for rc_file in $WORKSPACE/rc/*; do source $rc_file done diff --git a/rc/aliases.rc b/rc/aliases.sh similarity index 100% rename from rc/aliases.rc rename to rc/aliases.sh diff --git a/rc/env.rc b/rc/env.sh similarity index 100% rename from rc/env.rc rename to rc/env.sh diff --git a/rc/git-prompt.rc b/rc/git-prompt.sh similarity index 100% rename from rc/git-prompt.rc rename to rc/git-prompt.sh diff --git a/rc/psql-env.rc b/rc/psql-env.sh similarity index 100% rename from rc/psql-env.rc rename to rc/psql-env.sh diff --git a/rc/tiger.rc b/rc/tiger.sh similarity index 100% rename from rc/tiger.rc rename to rc/tiger.sh