diff options
author | Aleksandr Krotov | 2019-01-15 14:33:02 +0300 |
---|---|---|
committer | Aleksandr Krotov | 2019-01-15 14:33:02 +0300 |
commit | f7e3423ddd13319fa651b9e8dd2954f53f570b0b (patch) | |
tree | 90fe2b6af9789229c9af3591902fa0f7da730f89 | |
parent | b498d921a1cad4c5a90d9b65b7d72ab0d77fb0b8 (diff) | |
download | aur-f7e3423ddd13319fa651b9e8dd2954f53f570b0b.tar.gz |
Changed msg and msg2 commands in .install
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | android-studio-launcher.install | 8 |
2 files changed, 6 insertions, 6 deletions
@@ -2,8 +2,8 @@ # Sat Dec 31 17:47:51 UTC 2016 pkgbase = android-studio-launcher pkgdesc = Wrap android-sdk directory in UnionFS to be "writeable" for Android Studio - pkgver = 1.0.1 - pkgrel = 3 + pkgver = 1.0.2 + pkgrel = 1 epoch = 1 install = android-studio-launcher.install arch = any diff --git a/android-studio-launcher.install b/android-studio-launcher.install index bd63b712fe23..8c29dcf06a42 100644 --- a/android-studio-launcher.install +++ b/android-studio-launcher.install @@ -3,8 +3,8 @@ post_install() { } post_upgrade() { - msg "Paths have changed. Move your local copy from" - msg2 "\$HOME/.AndroidStudio2.*/sdk_local to \$HOME/.AndroidStudio_sdk_local" - msg2 "and change your Android Studio Android SDK directory from" - msg2 "\$HOME/.AndroidStudio2.*/sdk to \$HOME/.AndroidStudio_sdk" + echo "Paths have changed. Move your local copy from" + echo "\$HOME/.AndroidStudio2.*/sdk_local to \$HOME/.AndroidStudio_sdk_local" + echo "and change your Android Studio Android SDK directory from" + echo "\$HOME/.AndroidStudio2.*/sdk to \$HOME/.AndroidStudio_sdk" } |