Skip to content
Snippets Groups Projects
Commit 31b78e76 authored by David Hrbáč's avatar David Hrbáč
Browse files

Removed old stuff

parent 64e5a95f
No related branches found
No related tags found
1 merge request!3Enabled CI
Pipeline #5285 passed
#!/bin/bash
MODULEBASE="/apps/phi/modules"
MODULEPATH=""
for dir in `ls $MODULEBASE`
do
# Exclude following directories
if [[ ($dir == "all") ]]; then
continue
fi
# In case that it's directory
if [ -d $MODULEBASE/$dir ]; then
if [ -z $MODULEPATH ]; then
MODULEPATH="$MODULEBASE/$dir"
else
MODULEPATH="$MODULEPATH:$MODULEBASE/$dir"
fi
fi
done
export MODULEPATH
./modules.py
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