RC scripts doesn't have *.rx mask

This commit is contained in:
Martin Blazik
2020-09-16 19:40:16 +02:00
parent d0dd01cbe1
commit 759fab0ea9
6 changed files with 1 additions and 1 deletions

2
bashrc
View File

@@ -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