Commit 136ceb6f authored by pracht's avatar pracht
Browse files

Fix setup script; Does not need to be executable

parent 9280bdb7
Loading
Loading
Loading
Loading

cluster/setup.sh

100755 → 100644
+2 −2
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ if [ ! -f "$modules" ]; then
fi

# Load the modules
cat "$modules" | while read -r MODULE; do
while read -r MODULE || [ -n "$MODULE" ]; do
    module load $MODULE
    echo "Loaded module $MODULE"
done
 No newline at end of file
done < "$modules"
 No newline at end of file