Replace NDK r10d with r10e

This commit is contained in:
Daniel Martí 2015-06-18 17:05:48 +02:00
parent 5985bb4a0b
commit 52c2ca1fe7
7 changed files with 17 additions and 17 deletions

View file

@ -35,7 +35,7 @@ script "setup-android-ndk-r9b" do
end
end
script "setup-android-ndk-r10d" do
script "setup-android-ndk-r10e" do
timeout 14400
interpreter "bash"
user node[:settings][:user]
@ -46,12 +46,12 @@ script "setup-android-ndk-r10d" do
else
SUFFIX=''
fi
chmod u+x /vagrant/cache/android-ndk-r10d-linux-x86$SUFFIX.bin
/vagrant/cache/android-ndk-r10d-linux-x86$SUFFIX.bin x
mv android-ndk-r10d #{ndk_loc}/r10d
chmod u+x /vagrant/cache/android-ndk-r10e-linux-x86$SUFFIX.bin
/vagrant/cache/android-ndk-r10e-linux-x86$SUFFIX.bin x
mv android-ndk-r10e #{ndk_loc}/r10e
"
not_if do
File.exists?("#{ndk_loc}/r10d")
File.exists?("#{ndk_loc}/r10e")
end
end