Files
concrete/docs/symlink_md.bash
youben11 698bd28104 ci: refactor docker images and CI jobs
use a single docker image for all testing environments
unify some CI jobs on this single environment
also parameterize the build of the doc, which no longer have a hardcoded
path for the compiler build directory
2022-09-13 15:18:15 +01:00

18 lines
308 B
Bash
Executable File

#!/bin/bash
if [ "$#" -ne 1 ]; then
echo "You must provide the compiler build directory"
exit 1
fi
mkdir -p links_to_compiler_build/md
cd links_to_compiler_build/md
yourfilenames=`find $1/tools/concretelang/docs/concretelang -name "*.md"`
for entry in $yourfilenames
do
ln -s "$entry" -f
done