From 053cc04e354e5cc30db4566a8ed49e427b5ea253 Mon Sep 17 00:00:00 2001 From: Austin Mackillop Date: Thu, 26 Mar 2020 09:31:25 -0400 Subject: [PATCH] [AM] Fix typo --- atlas_installer/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/atlas_installer/build.sh b/atlas_installer/build.sh index 74be0100a..b5f3bbd52 100755 --- a/atlas_installer/build.sh +++ b/atlas_installer/build.sh @@ -9,8 +9,8 @@ working_dir="${base_dir}/dist" rm -rf $working_dir \ && mkdir -p $working_dir \ && echo "Building atlas installer script..." \ - && echo "Copying the current atlas version (${reslease_version}) into the installer file" \ - && sed "s/There is no version information available./${reslease_version}/g" \ + && echo "Copying the current atlas version (${release_version}) into the installer file" \ + && sed "s/There is no version information available./${release_version}/g" \ $base_dir/atlas_installer.py > $working_dir/atlas_installer_before_notice.py \ && echo "Compressing the notice into a tar file" \ && tar -zcvf $working_dir/licenses.tgz NOTICE.md > /dev/null 2>&1 \