We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4afdb1 commit e3481f0Copy full SHA for e3481f0
setup/native-script.rb
@@ -27,6 +27,9 @@
27
`echo "export JAVA_HOME=$(/usr/libexec/java_home)" >> ~/.bash_profile`
28
`echo "export ANDROID_HOME=/usr/local/opt/android-sdk" >> ~/.bash_profile`
29
30
+puts "Installing node.js 0.12"
31
+system('brew install homebrew/versions/node012')
32
+
33
puts "Creating Homebrew formula for NativeScript."
34
File.open("/usr/local/Library/Formula/native-script.rb", "w:utf-8") do |f|
35
f.write DATA.read
@@ -46,8 +49,7 @@ class NativeScript < Formula
46
49
47
50
depends_on :macos => :yosemite
48
51
depends_on "pkg-config" => :build
- depends_on "node"
- depends_on "ant"
52
+# depends_on "node" # currently we do not work with latest node, and we manually install 0.12 (see above)
53
depends_on "android-sdk"
54
depends_on "gradle"
55
0 commit comments