summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorRaphael Moll <ralf@android.com>2013-12-02 15:00:52 -0800
committerRaphael Moll <ralf@android.com>2013-12-02 15:00:52 -0800
commit192b19607f653388c02c26642aa7885c6f9db6c8 (patch)
treeddeedbd9c6fba7985c165309f691e73a169a6c17 /build
parent0cd8e4c9487ed6d2a581930e1ea0f422a19db667 (diff)
downloadidea-192b19607f653388c02c26642aa7885c6f9db6c8.tar.gz
Studio: add manual updater script for Linux & MacOS.
Change-Id: Ie6f18141d40a84867a3428cd68b3e7aae7bfb8b9
Diffstat (limited to 'build')
-rw-r--r--build/scripts/dist.gant7
1 files changed, 7 insertions, 0 deletions
diff --git a/build/scripts/dist.gant b/build/scripts/dist.gant
index dff8976a0f10..689c62977668 100644
--- a/build/scripts/dist.gant
+++ b/build/scripts/dist.gant
@@ -211,6 +211,10 @@ private layoutMac(Map _args, String home, Paths paths) {
"""
args."idea.properties.path" = "${paths.distAll}/bin/idea.properties"
args.mac_no_yjp = true
+
+ // Manual updater script
+ ant.copy(file: "$home/../adt/idea/native/update_studio.sh", tofile: "$target/bin/update_studio.sh")
+
layoutMacApp(target, home, args)
}
@@ -230,6 +234,9 @@ private layoutUnix(Map _args, String home, Paths paths) {
ant.copy(file: "$home/../adt/idea/adt-branding/src/artwork/icon_AS.png", tofile: "$target/bin/idea.png")
+ // Manual updater script
+ ant.copy(file: "$home/../adt/idea/native/update_studio.sh", tofile: "$target/bin/update_studio.sh")
+
unixScripts(target, home, args.script_name, args)
unixVMOptions(target, "studio")
unixReadme(target, home, args)