mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-14 10:03:51 +01:00
15 lines
220 B
Bash
Executable File
15 lines
220 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Checks if all the other module directories are properly linked in the
|
|
# current directory. If not, the links are created.
|
|
|
|
for dir in $@
|
|
do
|
|
if [[ ! -h $dir ]] ;
|
|
then
|
|
ln -s ../$dir $dir
|
|
fi
|
|
done
|
|
|
|
|