mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-21 04:26:28 +02:00
11 lines
No EOL
233 B
Bash
11 lines
No EOL
233 B
Bash
#!/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 |