diff --git a/.ci/deploy.sh b/.ci/deploy.sh index f4ec471090c852ed14629d4dafbb6fa87ff56801..34afa74956ca471e9a9f1eb6104bafb8576dc510 100644 --- a/.ci/deploy.sh +++ b/.ci/deploy.sh @@ -9,6 +9,12 @@ echo $rootDir rm -rf $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 nBlades=0 for d in $(find . -maxdepth 1 -type d) @@ -31,12 +37,6 @@ do mkdir $rootDir/public/$BLADE/latest 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 cd $BLADE @@ -61,7 +61,7 @@ do # link to the img directory mv $rootDir/public/$BLADE/unstable/slides/img/* $rootDir/public/img/unstable/. 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}" @@ -77,7 +77,7 @@ do # link to the img directory mv $rootDir/public/$BLADE/stable/slides/img/* $rootDir/public/img/stable/. 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}" @@ -93,7 +93,7 @@ do # link to the img directory mv $rootDir/public/$BLADE/latest/slides/img/* $rootDir/public/img/latest/. 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}"