Skip to content
Snippets Groups Projects
Verified Commit 37222bd3 authored by Laurent Heirendt's avatar Laurent Heirendt :airplane:
Browse files

relative symlinks

parent b405ed5b
No related branches found
No related tags found
1 merge request!62Regular merge of develop
Pipeline #20441 passed
...@@ -9,6 +9,12 @@ echo $rootDir ...@@ -9,6 +9,12 @@ echo $rootDir
rm -rf $rootDir/public rm -rf $rootDir/public
mkdir $rootDir/public mkdir $rootDir/public
# create img folders
mkdir $rootDir/public/img
mkdir $rootDir/public/img/unstable
mkdir $rootDir/public/img/latest
mkdir $rootDir/public/img/stable
# loop through all the presentations # loop through all the presentations
nBlades=0 nBlades=0
for d in $(find . -maxdepth 1 -type d) for d in $(find . -maxdepth 1 -type d)
...@@ -31,12 +37,6 @@ do ...@@ -31,12 +37,6 @@ do
mkdir $rootDir/public/$BLADE/latest mkdir $rootDir/public/$BLADE/latest
mkdir $rootDir/public/$BLADE/stable mkdir $rootDir/public/$BLADE/stable
# create img folders
mkdir $rootDir/public/img
mkdir $rootDir/public/img/unstable
mkdir $rootDir/public/img/latest
mkdir $rootDir/public/img/stable
# change to the blade directory to be built # change to the blade directory to be built
cd $BLADE cd $BLADE
...@@ -61,7 +61,7 @@ do ...@@ -61,7 +61,7 @@ do
# link to the img directory # link to the img directory
mv $rootDir/public/$BLADE/unstable/slides/img/* $rootDir/public/img/unstable/. mv $rootDir/public/$BLADE/unstable/slides/img/* $rootDir/public/img/unstable/.
rm -rf $rootDir/public/$BLADE/unstable/slides/img rm -rf $rootDir/public/$BLADE/unstable/slides/img
ln -s $rootDir/public/img/unstable $rootDir/public/$BLADE/unstable/slides/img ln -s ../../../img/unstable $rootDir/public/$BLADE/unstable/slides/img
echo " > unstable built for file set ${BLADE}" echo " > unstable built for file set ${BLADE}"
...@@ -77,7 +77,7 @@ do ...@@ -77,7 +77,7 @@ do
# link to the img directory # link to the img directory
mv $rootDir/public/$BLADE/stable/slides/img/* $rootDir/public/img/stable/. mv $rootDir/public/$BLADE/stable/slides/img/* $rootDir/public/img/stable/.
rm -rf $rootDir/public/$BLADE/stable/slides/img rm -rf $rootDir/public/$BLADE/stable/slides/img
ln -s $rootDir/public/img/stable $rootDir/public/$BLADE/stable/slides/img ln -s ../../../img/stable $rootDir/public/$BLADE/stable/slides/img
echo " > stable built for file set ${BLADE}" echo " > stable built for file set ${BLADE}"
...@@ -93,7 +93,7 @@ do ...@@ -93,7 +93,7 @@ do
# link to the img directory # link to the img directory
mv $rootDir/public/$BLADE/latest/slides/img/* $rootDir/public/img/latest/. mv $rootDir/public/$BLADE/latest/slides/img/* $rootDir/public/img/latest/.
rm -rf $rootDir/public/$BLADE/latest/slides/img rm -rf $rootDir/public/$BLADE/latest/slides/img
ln -s $rootDir/public/img/latest $rootDir/public/$BLADE/latest/slides/img ln -s ../../../img/latest $rootDir/public/$BLADE/latest/slides/img
echo " > latest built for file set ${BLADE}" echo " > latest built for file set ${BLADE}"
......
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