Browse Source

deref symlink

Samuel Attard 10 months ago
parent
commit
6af09fc7b8
1 changed files with 5 additions and 1 deletions
  1. 5 1
      script/actions/move-artifacts.sh

+ 5 - 1
script/actions/move-artifacts.sh

@@ -75,7 +75,11 @@ move_src_dirs_if_exist() {
     fi      
   done
 
-  tar -C src_artifacts -cf src_artifacts.tar ./
+  if [ "$BUILD_TYPE" == "windows" ]; then
+    tar -C src_artifacts -cfh src_artifacts.tar ./
+  else
+    tar -C src_artifacts -cf src_artifacts.tar ./
+  fi
 
   echo Storing src_artifacts.tar
   mv src_artifacts.tar $SRC_ARTIFACTS