add Dart 3.0.1 package (#602)
This commit is contained in:
parent
684b47d2a2
commit
c4cf018be2
|
@ -0,0 +1,11 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
curl -L "https://storage.googleapis.com/dart-archive/channels/stable/release/3.0.1/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
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Put 'export' statements here for environment variables
|
||||||
|
export PATH=$PWD/bin:$PATH
|
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"language": "dart",
|
||||||
|
"version": "3.0.1",
|
||||||
|
"aliases": []
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Put instructions to run the runtime
|
||||||
|
dart run "$@"
|
|
@ -0,0 +1,3 @@
|
||||||
|
void main() {
|
||||||
|
print('OK');
|
||||||
|
}
|
Loading…
Reference in New Issue