Commit 9cda80de authored by Dan Trevino's avatar Dan Trevino

remove abort to mitigate #798

parent 47f69db1
......@@ -17,8 +17,13 @@ class Dart < Package
when 'aarch64'
source_url 'https://storage.googleapis.com/dart-archive/channels/stable/release/1.24.2/sdk/dartsdk-linux-arm64-release.zip'
source_sha1 'cf6b96eb5b88b1865bf357c2c9fd7ad8d64f763f'
else
abort 'Unable to install dart sdk. Architecture not supported.'.lightred
#
# comment out abort per discussion in #798
# https://github.com/skycocker/chromebrew/pull/798
# we have all current archs covered here anyway, i believe
#
# else
# abort 'Unable to install dart sdk. Architecture not supported.'.lightred
end
def self.install
system "mkdir -p #{CREW_DEST_DIR}/usr/local"
......@@ -26,4 +31,4 @@ class Dart < Package
system "cp -r lib/ #{CREW_DEST_DIR}/usr/local"
system "cp -r man/ #{CREW_DEST_DIR}/usr/local"
end
end
\ No newline at end of file
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment