10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-27 07:32:15 +02:00
quantum_package/scripts/prepare_module.sh

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