From f8341be9ea12af113d98a577fba94fb327187b24 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Wed, 2 Nov 2016 09:47:12 -0400 Subject: [PATCH] add statement about extract starting. --- src/gam-install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gam-install.sh b/src/gam-install.sh index 708a154b..f400e215 100755 --- a/src/gam-install.sh +++ b/src/gam-install.sh @@ -130,12 +130,13 @@ name=$(echo "$release_json" | python -c "$pycode" name $gamversion) # Temp dir for archive temp_archive_dir=$(mktemp -d) -echo_yellow "Downloading file $name from $browser_download_url to $temp_archive_dir" +echo_yellow "Downloading file $name from $browser_download_url to $temp_archive_dir." # Save archive to temp w/o losing our path (cd $temp_archive_dir && curl -O -L $browser_download_url) mkdir -p $target_dir +echo_yellow "Extracting archive to $target_dir" tar xf $temp_archive_dir/$name -C $target_dir rc=$? if (( $rc != 0 )); then