You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#Just for first package (mantid), archive the package-conda environment
15
19
if [ "$package_name"== mantid ] ;then
16
-
conda list --explicit --prefix ../../../mambaforge/envs/package-conda >../../$platform_dir/env_logs/package-conda_environment.txt 2>&1||echo"Failed to write package-conda conda list output to file"
20
+
conda list --explicit --prefix ../../../mambaforge/envs/package-conda >$log_directory/package-conda_environment.txt 2>&1||echo"Failed to write package-conda conda list output to file"
17
21
fi
18
-
conda list --explicit --prefix "$build_prefix">../../$platform_dir/env_logs/"${package_name}"_build_environment.txt 2>&1||echo"Failed to write build conda list output to file"
19
-
conda list --explicit --prefix "$prefix">../../$platform_dir/env_logs/"${package_name}"_host_environment.txt 2>&1||echo"Failed to write host conda list output to file"
22
+
conda list --explicit --prefix "$build_prefix">$log_directory/"${package_name}"_build_environment.txt 2>&1||echo"Failed to write build conda list output to file"
23
+
conda list --explicit --prefix "$prefix">$log_directory/"${package_name}"_host_environment.txt 2>&1||echo"Failed to write host conda list output to file"
0 commit comments