Updated to `Dart 2.19.6`

This commit is contained in:
RVG|lory 2023-04-08 13:52:48 +02:00 committed by GitHub
parent 86d897d580
commit 28314f16ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 27 additions and 0 deletions

11
packages/dart/2.19.6/build.sh vendored Normal file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env bash
curl -L "https://storage.googleapis.com/dart-archive/channels/stable/release/2.19.6/sdk/dartsdk-linux-x64-release.zip" -o dart.zip
unzip dart.zip
rm dart.zip
cp -r dart-sdk/* .
rm -rf dart-sdk
chmod -R +rx bin

4
packages/dart/2.19.6/environment vendored Normal file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
# Put 'export' statements here for environment variables
export PATH=$PWD/bin:$PATH

5
packages/dart/2.19.6/metadata.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"language": "dart",
"version": "2.19.6",
"aliases": []
}

4
packages/dart/2.19.6/run vendored Normal file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
# Put instructions to run the runtime
dart run "$@"

3
packages/dart/2.19.6/test.dart vendored Normal file
View File

@ -0,0 +1,3 @@
void main() {
print('OK');
}