Skip to content

Commit

Permalink
Fix test checking for ${install_prefix_dir}
Browse files Browse the repository at this point in the history
  • Loading branch information
Neves-P committed Nov 8, 2024
1 parent 4f06864 commit 9eca5e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions create_tarball.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ cvmfs_repo=${EESSI_CVMFS_REPO}
install_prefix_dir=${eessi_version}${eessi_dev_project:+/$eessi_dev_project}/
echo "Setting Install prefix directory to: ${install_prefix_dir}"

if [ ! -d ${install_prefix_dir} ]; then
echo "Install prefix directory ${install_prefix_dir} does not exist?!" >&2
if [ -z ${install_prefix_dir} ]; then
echo "\${install_prefix_dir} is empty?!" >&2
exit 2
fi

Expand Down

0 comments on commit 9eca5e4

Please sign in to comment.