Skip to content

Commit

Permalink
Merge pull request #8 from psranga/main
Browse files Browse the repository at this point in the history
added progress reporting to time-consuming compilation step, NOP functionality difference
  • Loading branch information
cLupus authored Sep 19, 2024
2 parents 409f677 + aad4aab commit 3d61aa0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bin/download
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ get_source() {
local sqlite_tarball="sqlite-autoconf-$long_version.tar.gz"
local sqlite_url="https://www.sqlite.org/$release_year/$sqlite_tarball"

echo "Downloading sqlite from $sqlite_url"
echo "downloading sqlite source code; url=$sqlite_url; destDir=$ASDF_DOWNLOAD_PATH"

curl --silent "$sqlite_url" --output "$ASDF_DOWNLOAD_PATH/$sqlite_tarball"
tar -xf "$ASDF_DOWNLOAD_PATH/$sqlite_tarball" --strip-components=1 -C "$ASDF_DOWNLOAD_PATH"
Expand Down
1 change: 1 addition & 0 deletions bin/install
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ install_sqlite() {
exit 1
fi

echo "configure && compile && make install: this might take a minute; buildDir=$ASDF_DOWNLOAD_PATH; installDir=${install_path}"
compile_source "$install_path"
}

Expand Down

0 comments on commit 3d61aa0

Please sign in to comment.