We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a23fbcd commit 7483a44Copy full SHA for 7483a44
dockerfiles/mirror.sh
@@ -93,12 +93,11 @@ if [[ $1 = "mirror-releases" ]] && [ $# -eq 2 ]; then
93
echo -e "\n\e[1;34m=== Spack recipes\e[0m"
94
prj=spack_recipes
95
download_release_and_untar $prj $2 .
96
- mv $prj-$2/meshing/packages packages
97
- rm -rf packages/machine_types
+ rm -rf $prj-$2/meshing/packages/machine_types
98
99
echo -e "\n\e[1;34m=== Tar recipes and mirrors\e[0m"
100
- tar cvfz meshing_recipes.tar.gz -C packages .
101
- rm -rf packages $prj-$2
+ tar cvfz meshing_recipes.tar.gz -C $prj-$2/meshing .
+ rm -rf $prj-$2
102
103
# Tar all mirrors
104
rm -rf meshing_mirror/machine_types
0 commit comments