-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from faberNovel/feature/prettify_desc
Prettify images description file
- Loading branch information
Showing
2 changed files
with
19 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,24 @@ | ||
#!/bin/sh | ||
|
||
echo "apt packages:" | ||
apt list --installed | ||
echo "## Image environment" | ||
cat /etc/*-release | ||
echo | ||
|
||
echo "rbenv:" | ||
rbenv -v | ||
echo "## Android environment" | ||
echo "### Android SDKs" | ||
sdkmanager --list --sdk_root=$ANDROID_HOME | | ||
awk '/Installed packages:/{flag=1; next} /Available Packages/{flag=0} flag' | ||
echo "### Google Cloud SDK" | ||
gcloud --version | ||
echo | ||
|
||
echo "Default ruby version:" | ||
ruby -v | ||
echo "## APT packages" | ||
dpkg -l | ||
echo | ||
|
||
echo "Installed gems:" | ||
echo "## Ruby environment" | ||
echo "### Default ruby version" | ||
ruby -v | ||
echo "### rbenv" | ||
rbenv -v | ||
echo "### Installed gems:" | ||
gem list | ||
echo | ||
|
||
echo "gcloud env:" | ||
gcloud --version | ||
echo | ||
|
||
echo "Android env:" | ||
sdkmanager --sdk_root=$ANDROID_HOME --list | ||
echo |